setThinBorderWidth method

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

Implementation

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