OrderItems.fromJson constructor

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

Implementation

OrderItems.fromJson(Map<String, dynamic> json) {
  productRefId = json["productRefId"];
  price = json["price"];
  currency = json["currency"];
  pricePeriod = json["pricePeriod"];
  label = json["label"];
  subtitleLabel = json["subtitleLabel"];
  description = json["description"];
}