setSecondaryLight method
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));
}