jonasbark / flutter_stripe_payment

[DISCONTINUED] A flutter plugin with stripe payment plugin integration
MIT License
307 stars 243 forks source link

[QUESTION] Create source for using Bancontact #149

Open cyrilOrderoo opened 4 years ago

cyrilOrderoo commented 4 years ago

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

aozeel commented 3 years ago

Is there any solution for this ?

victoriousStudio commented 3 years ago

Hi any update on how to process bancontact payments ?