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