isAutoFocusEnabled method

bool isAutoFocusEnabled()
override

Querying whether automatic face detection is supported (for mobile OS)

Implementation

bool isAutoFocusEnabled() {
  if (_only_support_mobile) {
    return _deviceFFIBindings.is_audio_focus_enabled(_nativePointer) != 0;
  } else {
    debugPrint("device-manager-api not support");
    return false;
  }
}