captureFeedback static method
Future<SentryId>
captureFeedback(
- SentryFeedback feedback, {
- Hint? hint,
- ScopeCallback? withScope,
Reports SentryFeedback to Sentry.io.
Use withScope
to add SentryAttachment to the feedback.
Implementation
static Future<SentryId> captureFeedback(
SentryFeedback feedback, {
Hint? hint,
ScopeCallback? withScope,
}) =>
_taskQueue.enqueue(
() => _hub.captureFeedback(
feedback,
hint: hint,
withScope: withScope,
),
SentryId.empty(),
DataCategory.unknown,
);