showPaymentSheet method

Future<PaymentResponse> showPaymentSheet()

Implementation

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