Skip to content

Instantly share code, notes, and snippets.

@nikhilmufc7
Created July 19, 2020 10:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nikhilmufc7/f49fc53a1e2c1947c3e4266669946810 to your computer and use it in GitHub Desktop.
Save nikhilmufc7/f49fc53a1e2c1947c3e4266669946810 to your computer and use it in GitHub Desktop.
Future _getProduct() async {
List<IAPItem> items =
await FlutterInappPurchase.instance.getProducts(_productLists);
for (var item in items) {
print('${item.toString()}');
this._items.add(item);
}
setState(() {
this._items = items;
this._purchases = [];
});
}
Future _getPurchases() async {
List<PurchasedItem> items =
await FlutterInappPurchase.instance.getAvailablePurchases();
for (var item in items) {
print('${item.toString()}');
this._purchases.add(item);
}
setState(() {
this._items = [];
this._purchases = items;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment