captureException method

  1. @override
Future<SentryId> captureException(
  1. dynamic throwable, {
  2. dynamic stackTrace,
  3. dynamic hint,
  4. ScopeCallback? withScope,
})
override

Captures the exception

Implementation

@override
Future<SentryId> captureException(
  dynamic throwable, {
  dynamic stackTrace,
  dynamic hint,
  ScopeCallback? withScope,
}) =>
    Sentry.captureException(
      throwable,
      stackTrace: stackTrace,
      hint: hint,
      withScope: withScope,
    );