flutter_stripe_payment
flutter_stripe_payment copied to clipboard
[QUESTION] Create source for using Bancontact
Hi, we are using this library and the payment method api for a marketplace flutter app (using strip connect account), however we want to handle bancontact payment. In the stripe doc it seems that bancontact is only available with sources api ?https://stripe.com/docs/sources/bancontact Is it possible to create source payment like this with this library ?
type: 'bancontact',
amount: 1099,
currency: 'eur',
owner: {
name: 'Jenny Rosen',
},
redirect: {
return_url: 'https://shop.example.com/crtA6B28E1',
},
}).then(function(result) {
// handle result.error or result.source
});
Thanks
Is there any solution for this ?
Hi any update on how to process bancontact payments ?