StockDealerContentModel constructor

StockDealerContentModel({
  1. int? id,
  2. String? productCode,
  3. String? productImage,
  4. String? productName,
  5. int? pogId,
  6. int? availableQuantity,
  7. String? outletId,
  8. int? recommendedQuantity,
  9. int? totalOrderedQuantity,
  10. List<OrderDetailsStockModel>? orderDetails,
  11. bool? isRecommended,
})

Implementation

StockDealerContentModel(
    {this.id,
    this.productCode,
    this.productImage,
    this.productName,
    this.pogId,
    this.availableQuantity,
    this.outletId,
    this.recommendedQuantity,
    this.totalOrderedQuantity,
    this.orderDetails,
    this.isRecommended});