KiteTabs constructor

const KiteTabs({
  1. required List<KiteTabItem> items,
  2. Key? key,
  3. bool isScrollable = false,
  4. int initialIndex = 0,
  5. ValueChanged<int>? onChanged,
})

Implementation

const KiteTabs({
  required this.items,
  super.key,
  this.isScrollable = false,
  this.initialIndex = 0,
  this.onChanged,
}) : assert(items.length > 0);