AppNavigationBar constructor

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

Implementation

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