Future<bool> _verifyPurchase(PurchaseDetails purchaseDetails) {
// IMPORTANT!! Always verify a purchase before delivering the product.
// For the purpose of an example, we directly return true.
return Future<bool>.value(true);
}--
You received this message because you are subscribed to the Google Groups "Flutter Development (flutter-dev)" group.
To unsubscribe from this group and stop receiving emails from it, send an email to flutter-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/flutter-dev/7db40345-0074-494f-9e1d-69d7c76675c7%40googlegroups.com.
Is this a nomenclature thing where "verify" means "persist that the user owns the product?"Otherwise, if the Store is telling me a purchase was made, it's the source of authority. I have no data at that point to verify against, taking the word "verify" literally.
--
You received this message because you are subscribed to the Google Groups "Flutter Development (flutter-dev)" group.
To unsubscribe from this group and stop receiving emails from it, send an email to flutter-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/flutter-dev/40dd9945-f136-47b3-b517-6c9f2b171b00%40googlegroups.com.