ProductContentModel constructor

ProductContentModel({
  1. int? id,
  2. String? productCode,
  3. String? productName,
  4. List<OrderDetails>? orderDetails,
  5. int? totalOrderedQuantity,
  6. int scannedQty = 0,
  7. List<SingleScannedModel>? iccidList,
  8. List<RangeScannedModel>? rangeList,
  9. List<int>? scannedserialNums,
})

Implementation

ProductContentModel(
    {this.id,
    this.productCode,
    this.productName,
    this.orderDetails,
    this.totalOrderedQuantity,
    this.scannedQty = 0,
    this.iccidList,
    this.rangeList,
    this.scannedserialNums});