PurchaseInvoiceModel constructor

PurchaseInvoiceModel(
  1. String name,
  2. String supplier,
  3. String posting_date,
  4. String status,
  5. double total,
)

Implementation

PurchaseInvoiceModel(
  this.name,
  this.supplier,
  this.posting_date,
  this.status,
  this.total,
);