ProductContentModel constructor

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

Implementation

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