captureException static method
Implementation
static void captureException(dynamic exception, {StackTrace? stackTrace}) {
if (!Sentry.isEnabled) return;
Sentry.captureException(exception, stackTrace: stackTrace);
}
static void captureException(dynamic exception, {StackTrace? stackTrace}) {
if (!Sentry.isEnabled) return;
Sentry.captureException(exception, stackTrace: stackTrace);
}