Checks if a product with the given productId exists in the shopping cart.
productId
bool isItemExistsInCart(String productId) { return _cartBox.keys.contains(productId); }