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