plaid 0.0.1 copy "plaid: ^0.0.1" to clipboard
plaid: ^0.0.1 copied to clipboard

outdated

Porting of Plaid Api (https://plaid.com/docs/) to Flutter.

Flutter for Plaid Link

based off of: https://pub.dev/packages/flutter_plaid But provides additional necessary functionality pub

Usage #

class _Example extends State {
  
  showPlaidView() {
    bool plaidSandbox = false;
    
    Configuration configuration = Configuration(
        plaidPublicKey: 'yourPublicKey',
        plaidBaseUrl: 'https://cdn.plaid.com/link/v2/stable/link.html',
        plaidEnvironment: plaidSandbox ? 'sandbox' : 'production',
        environmentPlaidPathAccessToken:
            'https://sandbox.plaid.com/item/public_token/exchange',
        environmentPlaidPathStripeToken:
            'https://sandbox.plaid.com/processor/stripe/bank_account_token/create',
        plaidClientId: 'yourPlaidClientId',
        secret: plaidSandbox ? 'yourSecret' : '');

    FlutterPlaidApi flutterPlaidApi = FlutterPlaidApi(configuration);
    flutterPlaidApi.launch(context, (Result result) {
      ///handle result
    }, stripeToken: true);
  }

  @override
  Widget build(BuildContext context) {
    return Container();
  }
}

3
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Porting of Plaid Api (https://plaid.com/docs/) to Flutter.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, http, webview_flutter

More

Packages that depend on plaid