addToWishlist method
Add product to wishlist.
Adds a product to the customer's wishlist. Requires customer authentication.
sku
the product's SKU to add to wishlist
Returns true
if product was added successfully, false
otherwise.
Implementation
@override
Future<bool> addToWishlist(String sku) async {
return false;
}