AddForm constructor

AddForm({
  1. Key? key,
  2. required bool? isEditMode,
  3. String? title,
  4. String? desc,
  5. String? date,
  6. String? developer,
  7. String? id,
  8. String? severity,
  9. String? status,
})

Implementation

AddForm({
  super.key,
  required this.isEditMode,
  this.title,
  this.desc,
  this.date,
  this.developer,
  this.id,
  this.severity,
  this.status,
});