setSegmentedButtonBorderRadius method

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

Implementation

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