createAsyncRecognizer method Null safety

Future<AsyncRecognizer> createAsyncRecognizer(
  1. String ini_file,
  2. {bool processing = true,
  3. bool matching = true,
  4. bool processing_less_memory_consumption = false}
)

Implementation

Future<AsyncRecognizer> createAsyncRecognizer(final String ini_file,
    {final bool processing = true,
    final bool matching = true,
    final bool processing_less_memory_consumption = false}) async {
  return AsyncRecognizer.create(
      _impl, _facerecConfDir, _dllPath, ini_file, processing, matching, processing_less_memory_consumption);
}