MFInvoiceItem.fromJson constructor
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'];
}