captureFeedback method
Future<SentryId>
captureFeedback(
- SentryFeedback feedback, {
- Hint? hint,
- 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,
);