Last active
July 19, 2020 10:28
-
-
Save nikhilmufc7/93dcf02d556d8ba924a483d27668c7e6 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 _getPurchaseHistory() async { | |
List<PurchasedItem> items = | |
await FlutterInappPurchase.instance.getPurchaseHistory(); | |
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