ReportFormData constructor

ReportFormData({
  1. required String? category,
  2. required String description,
  3. required String contact,
  4. String? attachedImage,
  5. String? screenshotPath,
})

Implementation

ReportFormData({
  required this.category,
  required this.description,
  required this.contact,
  this.attachedImage,
  this.screenshotPath,
});