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