OrderItem.fromJson constructor

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

Implementation

factory OrderItem.fromJson(Map<String, dynamic> json) => OrderItem(
      name: json["name"],
      sku: json["sku"],
      units: json["units"],
      sellingPrice: json["selling_price"],
      discount: json["discount"],
      tax: json["tax"],
      hsn: json["hsn"],
    );