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