checkPaymentOptions static method
Implementation
static Future<Object> checkPaymentOptions(String jsonData) async {
try {
Object result = await platform.invokeMethod(
'checkPaymentOptions', <String, String>{'checkPaymentOptions': jsonData});
return result;
} on PlatformException catch (e) {
showToast(e.message.toString());
rethrow;
}
}