TabBarProps constructor

const TabBarProps({
  1. required List<TabBarItemProps> tabs,
  2. required int selectedIndex,
  3. required void onChanged(
    1. int index
    ),
  4. bool fill = false,
})

Implementation

const TabBarProps({
  required this.tabs,
  required this.selectedIndex,
  required this.onChanged,
  this.fill = false,
});