buySkuComplete static method
Implementation
static Future<bool> buySkuComplete(NamiPurchaseSuccess namiPurchaseSuccess) {
return channel
.invokeMethod<bool>("buySkuComplete", namiPurchaseSuccess.toMap())
.then<bool>((bool? value) => value ?? false);
}