paymentOrder static method

Future<String> paymentOrder()

Implementation

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