UserFeedback constructor

UserFeedback({
  1. required String text,
  2. required Uint8List screenshot,
  3. Map<String, dynamic>? extra,
})

Creates an UserFeedback. Typically never used by a user of this library.

Implementation

UserFeedback({
  required this.text,
  required this.screenshot,
  this.extra,
});