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