isAutoFocusEnabled method

Future<bool?> isAutoFocusEnabled()

Query whether the device supports automatic recognition of face position (supports only the Android and iOS platforms)

Returned value: true: supported; false: not supported

Implementation

Future<bool?> isAutoFocusEnabled() {
  return _channel.invokeMethod('isAutoFocusEnabled');
}