KiteBottomNavBar constructor

const KiteBottomNavBar({
  1. required List<KiteBottomNavItem> items,
  2. required int selectedIndex,
  3. required ValueChanged<int> onChanged,
  4. Key? key,
})

Implementation

const KiteBottomNavBar({
  required this.items,
  required this.selectedIndex,
  required this.onChanged,
  super.key,
});