NUIBottomNavItem constructor

NUIBottomNavItem({
  1. required String id,
  2. required Widget icon,
  3. Widget? activeIcon,
  4. String? label,
  5. Color? backgroundColor,
  6. ClickListenerOverride? listenerOverride,
})

Implementation

NUIBottomNavItem({
  required this.id,
  required Widget icon,
  Widget? activeIcon,
  String? label,
  Color? backgroundColor,
  this.listenerOverride
}): super(icon: icon, activeIcon: activeIcon, label: label, backgroundColor: backgroundColor);