setTabBarIndicatorTopRadius method
Implementation
void setTabBarIndicatorTopRadius(double? value, [bool notify = true]) {
if (value == _tabBarIndicatorTopRadius) return;
_tabBarIndicatorTopRadius = value;
if (notify) notifyListeners();
unawaited(_themeService.save(Store.keyTabBarIndicatorTopRadius, value));
}