ArcaneTabs constructor

const ArcaneTabs({
  1. required List<ArcaneTabItem> tabs,
  2. int initialIndex = 0,
  3. void onChanged(
    1. int index
    )?,
  4. bool fill = false,
  5. Key? key,
})

Implementation

const ArcaneTabs({
  required this.tabs,
  this.initialIndex = 0,
  this.onChanged,
  this.fill = false,
  super.key,
});