PurchaseInvoiceModel.fromJson constructor
Implementation
factory PurchaseInvoiceModel.fromJson(Map<String, dynamic> json) {
return PurchaseInvoiceModel(
json["name"],
json["supplier"],
json["posting_date"],
json["status"],
json["total"],
);
}