The list of tabs to display.
List<Tab> get tabs => _tabs;
Sets the list of tabs and invalidates the paint cache.
set tabs(List<Tab> value) { if (identical(_tabs, value)) return; _tabs = value; _cachedTabsIdentity = null; _invalidateCache(); markNeedsLayout(); }