setInputDecoratorBackgroundAlphaLight method
Implementation
void setInputDecoratorBackgroundAlphaLight(int? value, [bool notify = true]) {
if (value == _inputDecoratorBackgroundAlphaLight) return;
_inputDecoratorBackgroundAlphaLight = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyInputDecoratorBackgroundAlphaLight, value));
}