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