setLightIsWhite method
Implementation
void setLightIsWhite(bool? value, [bool notify = true]) {
if (value == null) return;
if (value == _lightIsWhite) return;
_lightIsWhite = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyLightIsWhite, value));
}