FeedbackEvent constructor

const FeedbackEvent({
  1. required String id,
  2. required String message,
  3. int priority = 0,
  4. Duration? duration,
  5. Set<String> tags = const {},
  6. bool dismissible = true,
  7. Map<String, dynamic> metadata = const {},
})

Implementation

const FeedbackEvent({
  required this.id,
  required this.message,
  this.priority = 0,
  this.duration,
  this.tags = const {},
  this.dismissible = true,
  this.metadata = const {},
});