setInputDecoratorIsFilled method

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

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));
}