checkPaymentOptions static method

Future<Object> checkPaymentOptions(
  1. String jsonData
)

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;
  }
}