setThickBorderWidth method

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

Implementation

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