addPaymentMethod static method

Future<PaymentResponse> addPaymentMethod()

Present the Payment Collection Form

Implementation

static Future<PaymentResponse> addPaymentMethod() async {
  var response = await _channel.invokeMethod('addPaymentMethod');
  var paymentResponse = PaymentResponse.fromJson(response);
  return paymentResponse;
}