skuPurchased static method
Check if a specific product SKU has been purchased
Implementation
static Future<bool> skuPurchased(String skuID) async {
return channel
.invokeMethod<bool>("skuPurchased", skuID)
.then<bool>((bool? value) => value ?? false);
}