setSegmentedButtonBorderWidth method

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

Implementation

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