setWhiteBalance method

Future<void> setWhiteBalance(
  1. String value
)

Sets the white balance.

Changing the setting will release the auto-white balance lock. It is recommended not to change white balance and AWB lock at the same time.

See: getWhiteBalance setAutoWhiteBalanceLock

Implementation

Future<void> setWhiteBalance(String value) {
  return _channel.$setWhiteBalance(this, value);
}