flutterflutter-in-app-purchase

No longer able to access queryPastPurchases in InAppPurchase Flutter


I recently updated the InAppPurchase plugin in flutter. The update is breaking the code. I am unable get past purchases using the InAppPurchase instance.Anyone know how to retreive the past purchase?

Final QueryPurchaseDetailsResponse purchaseResponse =await _inAppPurchase.queryPastPurchases();

Solution

  • try to use:

      final InAppPurchase _inAppPurchase = InAppPurchase.instance;
      await _inAppPurchase.restorePurchases();