CustomBottomBar constructor

const CustomBottomBar({
  1. Key? key,
  2. required void handleChange(
    1. int
    ),
  3. required int selectedIndex,
  4. required List<NavigationItem> navItems,
})

Implementation

const CustomBottomBar({
  super.key,
  required this.handleChange,
  required this.selectedIndex,
  required this.navItems,
});