setSecondaryLight method

void setSecondaryLight(
  1. Color? value, [
  2. bool notify = true
])

Implementation

void setSecondaryLight(Color? value, [bool notify = true]) {
  if (value == null) return;
  if (value == _secondaryLight) return;
  _secondaryLight = value;
  if (notify) notifyListeners();
  unawaited(_themeService.save(Store.keySecondaryLight, value));
}