setTabBarDividerColor method
Implementation
void setTabBarDividerColor(Color? value, [bool notify = true]) {
if (value == _tabBarDividerColor) return;
_tabBarDividerColor = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyTabBarDividerColor, value));
}