sendPaymentData method

void sendPaymentData(
  1. PaymentResponse response
)

Implementation

void sendPaymentData(PaymentResponse response) {
  if (onPayment != null) {
    onPayment!(response);
  }
}