wechat_pay, us_bank_account, bank_transfer payment methods are not visible in payment sheet open with payment intent #2042
Unanswered
codePhenomena
asked this question in
Q&A
Replies: 1 comment
-
|
Any update on this? Does await Stripe.instance.presentPaymentSheet() work when using a payment intent with a us_bank_account payment method ID? Furthermore, how do we confirm that payment has gone through, since bank payments usually take 1 - 3 business days to process? Any advice? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
flutter_stripe 11.1.0
below code snipped i am using to open payment sheet -
await Stripe.instance.initPaymentSheet( paymentSheetParameters: SetupPaymentSheetParameters( customFlow: false, merchantDisplayName: 'Ascent Tenant', setupIntentClientSecret: addCard?clientSecret:null, paymentIntentClientSecret: addCard?null:clientSecret, customerEphemeralKeySecret: ephemeralKeySecret, customerId: customerId, style: ThemeMode.light, // billingDetails: BillingDetails( // address: Address(city: "", country: "US", line1: "", line2: "", postalCode: "", state: "") // ) ), ); await Stripe.instance.presentPaymentSheet();Beta Was this translation helpful? Give feedback.
All reactions