removeFromWishlist method

Future<bool> removeFromWishlist(
  1. String itemId
)

Remove product from wishlist.

Removes a product from the customer's wishlist. Requires customer authentication.

itemId the ID of the wishlist item to remove

Returns true if product was removed successfully, false otherwise.

Implementation

Future<bool> removeFromWishlist(String itemId) {
  throw UnimplementedError('removeFromWishlist() has not been implemented.');
}