setInputDecoratorUnfocusedHasBorder method

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

Implementation

void setInputDecoratorUnfocusedHasBorder(bool? value, [bool notify = true]) {
  if (value == null) return;
  if (value == _inputDecoratorUnfocusedHasBorder) return;
  _inputDecoratorUnfocusedHasBorder = value;
  if (notify) notifyListeners();
  unawaited(_themeService.save(Store.keyInputDecoratorUnfocusedHasBorder, value));
}