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