setTabBarIndicatorSize method
Implementation
void setTabBarIndicatorSize(TabBarIndicatorSize? value, [bool notify = true]) {
if (value == _tabBarIndicatorSize) return;
_tabBarIndicatorSize = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyTabBarIndicatorSize, value));
}