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