remove method
- PurchasableFood foodItem
Removes a PurchasableFood item from the cart.
Implementation
void remove(PurchasableFood foodItem) {
_items.remove(foodItem);
notifyListeners();
}
Removes a PurchasableFood item from the cart.
void remove(PurchasableFood foodItem) {
_items.remove(foodItem);
notifyListeners();
}