Item.fromJson constructor

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

Implementation

Item.fromJson(Map<String?, dynamic> json) {
  sku = json['sku'];
  name = json['name'];
  unitPrice = json['unitPrice'];
  quantity = json['quantity'];
  unitOfMeasure = json['unitOfMeasure'];
}