captureException method
Future<SentryId>
captureException(
- dynamic throwable, {
- dynamic stackTrace,
- Hint? hint,
- ScopeCallback? withScope,
override
Captures the exception
Implementation
@override
Future<SentryId> captureException(
dynamic throwable, {
dynamic stackTrace,
Hint? hint,
ScopeCallback? withScope,
}) =>
Sentry.captureException(
throwable,
stackTrace: stackTrace,
hint: hint,
withScope: withScope,
);