removeFromCart method

  1. @override
Future<bool> removeFromCart(
  1. String itemId
)
override

Remove item from cart.

Removes a specific item from the shopping cart.

itemId the ID of the cart item to remove

Returns true if item was removed successfully, false otherwise.

Implementation

@override
Future<bool> removeFromCart(String itemId) async {
  return false;
}