getExposureCompensationStep method

Future<double> getExposureCompensationStep()

Gets the exposure compensation step.

Applications can get EV by multiplying the exposure compensation index and step. Ex: if exposure compensation index is -6 and step is 0.333333333, EV is -2.

Implementation

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