8 lines
240 B
Dart
8 lines
240 B
Dart
import 'package:sentry_flutter/sentry_flutter.dart';
|
|
|
|
/// Report error to Sentry
|
|
void reportError({required dynamic error, StackTrace? stackTrace}) {
|
|
if (error == null) return;
|
|
|
|
Sentry.captureException(error, stackTrace: stackTrace);
|
|
}
|