MFInvoiceItem.fromJson constructor

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

Implementation

MFInvoiceItem.fromJson(Map<String, dynamic> json) {
  itemName = json['ItemName'];
  quantity = json['Quantity'];
  unitPrice = json['UnitPrice'];
  weight = json['Weight'];
  width = json['Width'];
  height = json['Height'];
  depth = json['Depth'];
}