SalesOrderModel constructor

SalesOrderModel(
  1. String name,
  2. String customer,
  3. String delivery_date,
  4. String status,
  5. double total,
)

Implementation

SalesOrderModel(
  this.name,
  this.customer,
  this.delivery_date,
  this.status,
  this.total,
);