oneTimePaymentReal method

Future<PhResponse> oneTimePaymentReal (
  1. {@required InitRequest request}
)

Implementation

static Future<PhResponse> oneTimePaymentReal(
    {@required InitRequest request}) async {
  Map<String, dynamic> map = request.toJson();
  Map<dynamic, dynamic> response = Map();
  response = await _channel.invokeMethod('onTimePaymentReal', map);
  PhResponse phResponse =
      PhResponse.fromJson(json.decode(response['response']));
  return phResponse;
}