TabShell constructor

const TabShell({
  1. Key? key,
  2. required List<TabDefinition> tabs,
  3. required TabController tabController,
  4. double? appBarMaxWidth,
})

Implementation

const TabShell({
  Key? key,
  required this.tabs,
  required this.tabController,
  this.logo,
  this.appBarMaxWidth,
}) : super(key: key);