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