ProductDetail constructor

ProductDetail({
  1. int? count,
  2. int? productId,
  3. String? productCode,
  4. int? transferOrderId,
  5. String? productName,
})

Implementation

ProductDetail({
  this.count,
  this.productId,
  this.productCode,
  this.transferOrderId,
  this.productName,
});