clearCart method

void clearCart()

Clear all the items in the cart

Implementation

void clearCart() {
  this.items.clear();
}