contains method
- PurchasableFood foodItem
Returns true if the cart contains the specified PurchasableFood item, false otherwise.
Implementation
bool contains(PurchasableFood foodItem) {
return _items.contains(foodItem);
}
Returns true if the cart contains the specified PurchasableFood item, false otherwise.
bool contains(PurchasableFood foodItem) {
return _items.contains(foodItem);
}