removeFromWishlist method
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
@override
Future<bool> removeFromWishlist(String itemId) async {
return false;
}