startPaymentUiFlow method

Future<void> startPaymentUiFlow({
  1. String? token,
})

Implementation

Future<void> startPaymentUiFlow({String? token}) async {
  return _channel.invokeMethod('startPaymentUiFlow', {
    "token": token,
  });
}