captureEvent method

Future<SentryId> captureEvent(
  1. SentryEvent event, {
  2. dynamic stackTrace,
  3. dynamic hint,
  4. ScopeCallback? withScope,
})

Captures the event.

Implementation

Future<SentryId> captureEvent(
  SentryEvent event, {
  dynamic stackTrace,
  dynamic hint,
  ScopeCallback? withScope,
}) async {
  var sentryId = SentryId.empty();

  if (!_isEnabled) {
    _options.logger(
      SentryLevel.warning,
      "Instance is disabled and this 'captureEvent' call is a no-op.",
    );
  } else {
    final item = _peek();
    final scope = _cloneAndRunWithScope(item.scope, withScope);

    try {
      sentryId = await item.client.captureEvent(
        event,
        stackTrace: stackTrace,
        scope: scope,
        hint: hint,
      );
    } catch (err) {
      _options.logger(
        SentryLevel.error,
        'Error while capturing event with id: ${event.eventId}, error: $err',
      );
    } finally {
      _lastEventId = sentryId;
    }
  }
  return sentryId;
}