The height of the tab labels and indicator.
Source
@override
double get bottomHeight {
for (TabLabel label in labels.values) {
if (label.hasText && label.hasIcon)
return _kTextAndIconTabHeight + _kTabIndicatorHeight;
}
return _kTabHeight + _kTabIndicatorHeight;
}