startLiveness method
Future
startLiveness(
- String appKey,
- String environment,
- Object? builder,
- Object? themeBuilder,
- Object? fontsBuilder,
- Object? loading,
override
Implementation
@override
Future startLiveness(
String appKey,
String environment,
Object? builder,
Object? themeBuilder,
Object? fontsBuilder,
Object? loading,
) async {
return await methodChannel.invokeMapMethod(
'OITI.startLiveness3d',
{
'appkey': appKey,
'environment': environment,
'texts': builder,
'theme': themeBuilder,
'fonts': fontsBuilder,
'loading': loading,
},
);
}