setNavBarIndicatorBorderRadius method

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

Implementation

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