TabShellAppBar constructor

const TabShellAppBar({
  1. Key? key,
  2. required List<TabDefinition> tabs,
  3. required TabController tabController,
  4. required SideBarController sideBarController,
  5. double? contentMaxWidth,
  6. required Function onMenuButtonTapped,
  7. TabShellAppBarStyle? style,
})

Implementation

const TabShellAppBar({
  Key? key,
  required this.tabs,
  required this.tabController,
  required this.sideBarController,
  this.contentMaxWidth,
  required this.onMenuButtonTapped,
  this.logo,
  this.style,
}) : super(key: key);