getWishlist method

  1. @override
Future<Map<String, dynamic>?> getWishlist()
override

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

@override
Future<Map<String, dynamic>?> getWishlist() async {
  return null;
}