CollectStockCardModel constructor

CollectStockCardModel({
  1. double? amount,
  2. String? materialCode,
  3. int? orderedQty = 0,
  4. int? deliveredQty,
  5. int scannedQty = 0,
  6. String? productName,
  7. String? highlightMsg,
  8. bool? isTradeMark,
  9. bool? isRecommended,
  10. String? productImage,
  11. List<RangeScannedModel>? rangeList,
  12. List<SingleScannedModel>? singleList,
  13. int? previousScannedCount = 0,
})

Implementation

CollectStockCardModel({
  this.amount,
  this.materialCode,
  this.orderedQty = 0,
  this.deliveredQty,
  this.scannedQty = 0,
  this.productName,
  this.highlightMsg,
  this.isTradeMark,
  this.isRecommended,
  this.productImage,
  this.rangeList,
  this.singleList,
  this.previousScannedCount = 0,
});