fetchPurchasedProducts method

Future<List<NotificareProduct>> fetchPurchasedProducts()

Implementation

Future<List<NotificareProduct>> fetchPurchasedProducts() async {
  final response =
      await _methodChannel.invokeListMethod('fetchPurchasedProducts');
  return response!.map((value) => NotificareProduct.fromJson(value)).toList();
}