TabWebApp constructor

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

Implementation

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