startOnboarding method
Implementation
@override
Future<void> startOnboarding(String folderUid, IDCheckTheme? theme) async {
try {
await (methodChannel.invokeMethod('startOnboarding', <String, dynamic>{
'folderUid': folderUid,
if (theme != null) 'theme': "${theme.toJson()}" else 'theme': null
}));
} on PlatformException catch (e) {
throw PlatformException(code: "CAPTURE_FAILED", message: e.message);
}
}