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