fillAnalyticsData method
Implementation
@override
Future<void> fillAnalyticsData({
String? advertisingId,
String? userId,
}) async {
Sentry.configureScope(
(scope) => scope
..setUser(
SentryUser(
id: userId,
),
),
);
}