getCartTotal method

double getCartTotal()

Implementation

double getCartTotal() {
  double total = 0;
  for (var cartItem in _shoppingCart) {
    total += (cartItem.car.price * cartItem.quantity);
  }
  return total;
}