clear method

void clear()

Clears the cart of all PurchasableFood items.

Implementation

void clear() {
  _items.clear();
  notifyListeners();
}