TabAppBarSwitcher constructor

const TabAppBarSwitcher({
  1. Key? key,
  2. required Widget tabBarWidget,
  3. Widget? appBar,
  4. List<Widget>? appBars,
  5. double? defaultTabBarHeight,
})

Implementation

const TabAppBarSwitcher({
  super.key,
  required this.tabBarWidget,
  this.appBar,
  this.appBars,
  this.defaultTabBarHeight,
});