isAutoWhiteBalanceLockSupported method

Future<bool> isAutoWhiteBalanceLockSupported()

If auto-white balance locking is supported.

Applications should call this before trying to lock auto-white balance. See setAutoWhiteBalanceLock for details about the lock.

Implementation

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