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