ProductItem constructor

ProductItem({
  1. String? name,
  2. String? type,
  3. String? amount,
  4. String? category,
  5. int? quantity,
  6. String? description,
  7. String? subcategory,
  8. String? referenceId,
})

Implementation

ProductItem({
  this.name,
  this.type,
  this.amount,
  this.category,
  this.quantity,
  this.description,
  this.subcategory,
  this.referenceId,
});