getAutoWhiteBalanceLock method

Future<bool> getAutoWhiteBalanceLock()

Gets the state of the auto-white balance lock.

Applications should check isAutoWhiteBalanceLockSupported before using this method. See setAutoWhiteBalanceLock for details about the lock.

Returns true if auto-white balance is currently locked, and false otherwise.

Implementation

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