isAdjustingExposure method

Future<bool> isAdjustingExposure()

Indicates whether the device is currently adjusting its exposure setting.

Implementation

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