veriff_flutter 5.0.0
veriff_flutter: ^5.0.0 copied to clipboard
Flutter plugin for Veriff SDK. It allows you to integrate ID verification solution provided by Veriff into your application.
Veriff Flutter SDK #
Getting started #
To start using the Veriff Flutter SDK follow the steps described here.
Usage #
Veriff veriff = Veriff();
try {
Result result = await veriff.start(config);
print(result.status);
print(result.error);
} on PlatformException {
// handle exception
}
See more details here.