TabsProps constructor

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

Implementation

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