PurchaseOrderModel constructor

PurchaseOrderModel(
  1. String name,
  2. String supplier,
  3. String transaction_date,
  4. String status,
  5. double total,
)

Implementation

PurchaseOrderModel(
  this.name,
  this.supplier,
  this.transaction_date,
  this.status,
  this.total,
);