setTabBarIndicatorSize method

void setTabBarIndicatorSize(
  1. TabBarIndicatorSize? value, [
  2. bool notify = true
])

Implementation

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