anySkuPurchased static method
Ask Nami if it knows if a set of product SKU IDs has been purchased
Implementation
static Future<bool> anySkuPurchased(List<String> skuIDs) async {
return channel
.invokeMethod<bool>("anySkuPurchased", skuIDs)
.then<bool>((bool? value) => value ?? false);
}