setInputDecoratorBackgroundAlphaLight method

void setInputDecoratorBackgroundAlphaLight(
  1. int? value, [
  2. bool notify = true
])

Implementation

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