setDrawerIndicatorWidth method

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

Implementation

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