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.