FawryItem constructor
FawryItem({})
FawryItem constructor.
sku
sets the item id.
description
sets the item description.
qty
sets the quantity of the item.
price
sets the price for one item.
Implementation
FawryItem({
required this.sku,
required this.description,
required this.qty,
required this.price,
this.originalPrice,
this.height,
this.length,
this.weight,
this.width,
this.variantCode,
this.reservationCodes,
this.earningRuleID,
this.imageUrl,
});