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