verisync 0.0.4 copy "verisync: ^0.0.4" to clipboard
verisync: ^0.0.4 copied to clipboard

verisync is a KYC plugin

Verisync #

This package is for the verisync KYC service that helps simply the KYC process.

Features #

This package uses flutter_inappwebview to display the verisync KYC process. It as simple widget that takes in the following argument: redirectUrl, flowId, clientId, optional email, a function callbackSuccess to handle your success case, and an optional function callbackError to handle your error case.

Getting started #

Create your verisync account here if you do no already have one. Grab your flowId, and clientId from here .

next install the package by running #

flutter pub add verisync

Usage #

A simple example

ElevatedButton(
                onPressed: () {
                  showAdaptiveDialog(
                    context: context,
                    builder: (BuildContext dialogContext) => VerisyncWidget(
                      flowId: "<provide your call flowID>",
                      redirectUrl: "<provide your redirectUrl>",
                      clientId: "provide your clientID",
                      email: "provide email",
                      callbackSuccess: (dialogContext) {
                        ScaffoldMessenger.of(dialogContext).showSnackBar(
                          const SnackBar(
                            content: Text("Verification successful"),
                            duration: Duration(seconds: 3),
                          ),
                        );
                      },
                    ),
                  );
                },
                child: const Text('Verify your identity'),
              ),

Additional information #

...

5
likes
0
pub points
0%
popularity

Publisher

verified publisherverisync.co

verisync is a KYC plugin

Homepage

License

unknown (license)

Dependencies

flutter, flutter_inappwebview

More

Packages that depend on verisync