MFSupplier.fromJson constructor

MFSupplier.fromJson(
  1. Map<String, dynamic> json
)

Implementation

MFSupplier.fromJson(Map<String, dynamic> json) {
  supplierCode = json['SupplierCode'];
  supplierName = json['SupplierName'];
  invoiceShare = json['InvoiceShare'];
  proposedShare = json['ProposedShare'];
  depositShare = json['DepositShare'];
}