BasicNavBar constructor

const BasicNavBar({
  1. required List<BasicNavBarItem> items,
  2. int selectedIndex = 0,
  3. ValueChanged<int>? onSelected,
  4. Key? key,
})

Implementation

const BasicNavBar({
  required this.items,
  this.selectedIndex = 0,
  this.onSelected,
  super.key,
});