getAutoExposureLock method

Future<bool> getAutoExposureLock()

Gets the state of the auto-exposure lock.

Applications should check isAutoExposureLockSupported before using this method. See setAutoExposureLock for details about the lock.

Implementation

Future<bool> getAutoExposureLock() async {
  return await _channel.$getAutoExposureLock(this) as bool;
}