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