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