enableCameraAutoFocus method
Set whether to enable the automatic recognition of face position (supports only the Android and iOS platforms)
Parameters:
enable
true
: enabled; false
: disabled. Default value: true
Returned value: 0
: success; negative number: failure
Implementation
Future<int?> enableCameraAutoFocus(bool enable) {
return _channel.invokeMethod('enableCameraAutoFocus', {
"enable": enable,
});
}