addToWishlist method

  1. @override
Future<bool> addToWishlist(
  1. String sku
)
override

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;
}