initScanbotSdk static method
Initializes the Scanbot SDK with given config
s.
The Scanbot SDK must be initialized before using any other API methods.
Implementation
static Future<void> initScanbotSdk(ScanbotSdkConfig config) async {
LicenseRegistry.addLicense(licenses);
try {
_sdkLicenseListener = config.licenseErrorHandler;
_channel.setMethodCallHandler(_handler);
var json = config.toJson();
await _channel.invokeMethod('initScanbotSdk', json);
} catch (e) {
Logger.root.severe(e);
rethrow;
}
}