FawryItem constructor

FawryItem(
  1. {@required String sku,
  2. @required String description,
  3. @required String qty,
  4. @required String price,
  5. String originalPrice,
  6. String height,
  7. String length,
  8. String weight,
  9. String width,
  10. String variantCode,
  11. List<String> reservationCodes,
  12. String earningRuleID}
)

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,
});