FeedbackRequest constructor

FeedbackRequest({
  1. required String content,
  2. required String platform,
  3. required String version,
  4. String? name,
  5. String? email,
  6. String? attachmentPath,
  7. bool isPremium = false,
})

Implementation

FeedbackRequest({
  required this.content,
  required this.platform,
  required this.version,
  this.name,
  this.email,
  this.attachmentPath,
  this.isPremium = false,
});