remove method

void remove(
  1. PurchasableFood foodItem
)

Removes a PurchasableFood item from the cart.

Implementation

void remove(PurchasableFood foodItem) {
  _items.remove(foodItem);
  notifyListeners();
}