setInputDecoratorFocusedBorderWidth method

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

Implementation

void setInputDecoratorFocusedBorderWidth(double? value, [bool notify = true]) {
  if (value == _inputDecoratorFocusedBorderWidth) return;
  _inputDecoratorFocusedBorderWidth = value;
  if (notify) notifyListeners();
  unawaited(_themeService.save(Store.keyInputDecoratorFocusedBorderWidth, value));
}