BottomNavItem constructor

const BottomNavItem({
  1. required String label,
  2. required Component icon,
  3. Component? activeIcon,
  4. String? badge,
})

Implementation

const BottomNavItem({
  required this.label,
  required this.icon,
  this.activeIcon,
  this.badge,
});