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