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