setExposureCompensation method

Future<void> setExposureCompensation(
  1. int value
)

Sets the exposure compensation index.

The valid value range is from getMinExposureCompensation (inclusive) to getMaxExposureCompensation (inclusive). 0 means exposure is not adjusted. Application should call getMinExposureCompensation and getMaxExposureCompensation to know if exposure compensation is supported.

Implementation

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