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: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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