setTabBarIndicatorLight method

void setTabBarIndicatorLight(
  1. SchemeColor? value, [
  2. bool notify = true
])

Implementation

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