confirmPaymentElement method

Future<void> confirmPaymentElement(
  1. ConfirmPaymentElementOptions options
)

Implementation

Future<void> confirmPaymentElement(
  ConfirmPaymentElementOptions options,
) async {
  await js.confirmPayment(
    stripe_js.ConfirmPaymentOptions(
      elements: elements!,
      confirmParams: options.confirmParams,
      redirect: options.redirect,
    ),
  );
}