PriceItem constructor
PriceItem({})
Class object containing required information to display in the checkout
This class holds the name, description, quantity and cost of items to be displayed on the drop down menu within the checkout page.
Implementation
PriceItem(
{required this.name,
this.description,
required int quantity,
required this.itemCostCents,
this.canEditQuantity = true,
this.image})
: _quantity = quantity;