fillAnalyticsData method

  1. @override
Future<void> fillAnalyticsData({
  1. String? advertisingId,
  2. String? userId,
})

Implementation

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