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