captureFeedback method

  1. @override
Future<SentryId> captureFeedback(
  1. SentryFeedback feedback, {
  2. Hint? hint,
  3. ScopeCallback? withScope,
})
override

Captures the feedback.

Implementation

@override
Future<SentryId> captureFeedback(
  SentryFeedback feedback, {
  Hint? hint,
  ScopeCallback? withScope,
}) =>
    Sentry.currentHub.captureFeedback(
      feedback,
      hint: hint,
      withScope: withScope,
    );