Offer constructor

Offer({
  1. int? id,
  2. String? orderType,
  3. String? orderTypeName,
  4. String? offerId,
  5. String? offerName,
  6. int? lotSize,
  7. int? minOrderQuantity,
  8. int? maxOrderQuantity,
  9. int? minOrderQuantityPerMonth,
  10. int? maxOrderQuantityPerMonth,
  11. int? status,
  12. String? statusName,
})

Implementation

Offer({
  this.id,
  this.orderType,
  this.orderTypeName,
  this.offerId,
  this.offerName,
  this.lotSize,
  this.minOrderQuantity,
  this.maxOrderQuantity,
  this.minOrderQuantityPerMonth,
  this.maxOrderQuantityPerMonth,
  this.status,
  this.statusName,
});