setChipBorderRadius method

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

Implementation

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