DismissFeedbackInteraction constructor
Implementation
DismissFeedbackInteraction({
String? eventId,
Set<String>? tags,
bool dismissAll = false,
}) : super(
id: 'dismiss_feedback',
data: {
if (eventId != null) 'eventId': eventId,
if (tags != null) 'tags': tags.toList(),
'dismissAll': dismissAll,
},
supportsOptimistic: true,
tags: {'feedback', 'dismiss'},
);