setInputDecoratorBackgroundAlphaDark method

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

Implementation

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