AppTabs constructor

const AppTabs({
  1. Key? key,
  2. required List<AppTab> tabs,
  3. required int selectedIndex,
  4. ValueChanged<int>? onChanged,
  5. AppTabStyle style = AppTabStyle.primary,
})

Implementation

const AppTabs({
  super.key,
  required this.tabs,
  required this.selectedIndex,
  this.onChanged,
  this.style = AppTabStyle.primary,
});