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