SalesInvoiceModel constructor

SalesInvoiceModel(
  1. String name,
  2. String customer,
  3. String posting_date,
  4. String status,
  5. double total,
)

Implementation

SalesInvoiceModel(
  this.name,
  this.customer,
  this.posting_date,
  this.status,
  this.total,
);