Skip to main content
Question

Whats instead await Purchases.purchaseProduct() in Flutter?

  • 22 September 2023
  • 2 replies
  • 520 views

Hey,

I see that Purchases.purchaseProduct(); is Deprecated and it suggests to use purchaseStoreProduct instead. but purchaseStoreProduct doesn’t accept string like purchaseProduct so what should be instead if I want to purchase a IAP consumable/non-consumable product and not subscription.

Please check my answer to similar question here:
 

 


Hey @alex0401 !

 

More information on this method can be found here: https://pub.dev/documentation/purchases_flutter/latest/purchases_flutter/Purchases/purchaseStoreProduct.html

 

You will want to pass in a StoreProduct for the first parameter of this method, which will allow you to trigger the purchase flow!

 

Let me know if that helps! 


Reply