createPaymentIntent abstract method

Future<void> createPaymentIntent({
  1. required List<PaymentIntent> paymentIntents,
})

ℹ️ Initiates the payment flow. Best practice is to wrap it with try/catch for any implementation error

Implementation

Future<void> createPaymentIntent({
  required List<PaymentIntent> paymentIntents,
});