setElevatedButtonBorderRadius method

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

Implementation

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