retrievePaymentIntent method

Future<PaymentIntentResponse> retrievePaymentIntent(
  1. String clientSecret
)

Retrieve a PaymentIntent using its client secret. https://stripe.com/docs/js/payment_intents/retrieve_payment_intent

Implementation

Future<PaymentIntentResponse> retrievePaymentIntent(String clientSecret) {
  return parseIntentResponse(js.retrievePaymentIntent(clientSecret));
}