MaintenanceVisitModel constructor

MaintenanceVisitModel(
  1. String name,
  2. String customer,
  3. String mntc_date,
  4. String maintenance_type,
  5. String completion_status,
  6. String status,
  7. String item_code,
  8. String service_person,
  9. String work_done,
)

Implementation

MaintenanceVisitModel(
  this.name,
  this.customer,
  this.mntc_date,
  this.maintenance_type,
  this.completion_status,
  this.status,
  this.item_code,
  this.service_person,
  this.work_done,
);