getWishlist method

Future<Map<String, dynamic>?> getWishlist()

Get customer wishlist.

Retrieves the wishlist items for the currently authenticated customer. Requires customer authentication.

Returns a map containing the wishlist data, or null if not authenticated or failed.

Implementation

Future<Map<String, dynamic>?> getWishlist() {
  throw UnimplementedError('getWishlist() has not been implemented.');
}