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