setTabBarIndicatorLight method
Implementation
void setTabBarIndicatorLight(SchemeColor? value, [bool notify = true]) {
if (value == _tabBarIndicatorLight) return;
_tabBarIndicatorLight = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyTabBarIndicatorLight, value));
}