incrementQty method
Implementation
void incrementQty(String carId) {
Cart item = _shoppingCart.where((element) => element.id == carId).first;
item.quantity++;
notifyListeners();
}
void incrementQty(String carId) {
Cart item = _shoppingCart.where((element) => element.id == carId).first;
item.quantity++;
notifyListeners();
}