ProductContentModel constructor

ProductContentModel({
  1. int? id,
  2. String? productCode,
  3. String? productId,
  4. String? productImage,
  5. String? productName,
  6. String? productDescription,
  7. List<OrderDetails>? orderDetails,
  8. int? totalOrderedQuantity,
  9. int scannedQty = 0,
  10. double? itemAmount,
  11. double? itemTax,
  12. List<SingleScannedModel>? iccidList,
  13. List<RangeScannedModel>? rangeList,
  14. List<SellThruAssets>? assets,
  15. double? unitDiscount,
  16. double? sellingPrice,
  17. double? unitSellingPrice,
  18. List<int>? scannedserialNums,
})

Implementation

ProductContentModel(
    {this.id,
    this.productCode,
    this.productId,
    this.productImage,
    this.productName,
    this.productDescription,
    this.orderDetails,
    this.totalOrderedQuantity,
    this.scannedQty = 0,
    this.itemAmount,
    this.itemTax,
    this.iccidList,
    this.rangeList,
    this.assets,
    this.unitDiscount,
    this.sellingPrice,
    this.unitSellingPrice,
    this.scannedserialNums});