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