NeoBottomNav constructor
const
NeoBottomNav({
- Key? key,
- required List<
NeoBottomNavItem> items, - required int currentIndex,
- required ValueChanged<
int> onChanged,
Creates a NeoBottomNav instance.
Implementation
const NeoBottomNav({
super.key,
required this.items,
required this.currentIndex,
required this.onChanged,
});