Item constructor

Item({
  1. String? name,
  2. int? qty,
  3. String? id,
  4. double? price,
  5. String? cat1,
  6. String? cat2,
  7. String? cat3,
  8. String? categoryType,
  9. String? categoryCode,
  10. String? startDate,
  11. String? endDate,
})

Implementation

Item({
  this.name,
  this.qty,
  this.id,
  this.price,
  this.cat1,
  this.cat2,
  this.cat3,
  this.categoryType,
  this.categoryCode,
  this.startDate,
  this.endDate,
});