startLiveness method

  1. @override
Future startLiveness(
  1. String appKey,
  2. String environment,
  3. Object? builder,
  4. Object? themeBuilder,
  5. Object? fontsBuilder,
  6. 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,
    },
  );
}