sendExposureSettings method

Future<void> sendExposureSettings()

Implementation

Future<void> sendExposureSettings() async {
  if (_isAutoExposure) {
    await updateAutoExpSettings();
  }
  else {
    await updateManualExpSettings();
  }
}