getWishlist method
Get customer wishlist.
Implementation
@override
Future<Map<String, dynamic>?> getWishlist() async {
try {
final result = await methodChannel.invokeMethod<Map<String, dynamic>>('getWishlist');
return result;
} catch (e) {
_error = e.toString();
return null;
}
}