tabView property

Map<Widget, Widget> tabView

The Tabs and Views displayed on the screen.

Implementation

Map<Widget, Widget> get tabView => _tabViews;
void tabView=(Map<Widget, Widget>? tabViews)

Assign what's displayed on the screen.

Implementation

set tabView(Map<Widget, Widget>? tabViews) {
  if (tabViews == null) {
    return;
  }
  _tabViews.addAll(tabViews);
}