berbix_flutter 0.0.1
berbix_flutter: ^0.0.1 copied to clipboard
The official Berbix SDK
Berbix Flutter SDK #
The official Berbix SDK for Flutter.
Add Dependency #
To begin we'll need to add berbix_flutter as a dependency to our project. You can accomplish this by updating pubspec.yaml in the root directory of your project.
# Other Settings
# ...
dependencies:
flutter:
sdk: flutter
berbix_flutter: ^1.0.0
After we've updated our configuration, we can fetch the new packages by running:
flutter pub get
Integrating #
Once the dependencies have been fetched, we're ready to make use of the new package. First we'll import the package in the .dart file we'd like to start the Berbix flow from.
import 'package:berbix_flutter/berbix_flutter.dart';
Setting a client token #
Like any other Berbix SDK, the Flutter SDK requires a Client Token* to perform a transaction on behalf of a user. You can review our Server Side Documentation for help on generating a client token.
Once you have a valid client token, you can pass that to the SDK like so:
// Replace with a valid token!
BerbixFlutter.setClientToken("client_token_for_session");
Completing a transaction #
Once the client token is in place, you can perform a transaction simply by calling
BerbixFlutter.startFlow();
At this point, the SDK will handle navigation until the user either completes or cancels the verification flow.