Item constructor
Item({
- int? id,
- String? productName,
- String? productImage,
- String? productCode,
- String? productBarcode,
- String? combinationName,
- dynamic price,
- dynamic qty,
- dynamic vat,
- bool? vatExempted,
- dynamic supplierPrice,
- dynamic margin,
- bool? isSubscription,
- List<
ItemVariant> ? itemVariants, - String? thumbnail,
- String? medium,
Implementation
Item({
this.id,
this.productName,
this.productImage,
this.productCode,
this.productBarcode,
this.combinationName,
this.price,
this.qty,
this.vat,
this.vatExempted,
this.supplierPrice,
this.margin,
this.isSubscription,
this.itemVariants,
this.thumbnail,
this.medium,
});