Created
July 19, 2020 10:19
-
-
Save nikhilmufc7/f49fc53a1e2c1947c3e4266669946810 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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