NavItem constructor

const NavItem({
  1. required String label,
  2. required IconData icon,
  3. required Widget screen,
  4. Color? activeColor,
  5. Color? inactiveColor,
  6. bool showBadge = false,
})

Implementation

const NavItem({
  required this.label,
  required this.icon,
  required this.screen,
  this.activeColor,
  this.inactiveColor,
  this.showBadge = false,
});