NavDestination constructor

const NavDestination({
  1. required IconData icon,
  2. IconData? selectedIcon,
  3. required String label,
  4. int? badge,
  5. bool showInSidebar = true,
})

Creates a NavDestination.

Implementation

const NavDestination({
  required this.icon,
  this.selectedIcon,
  required this.label,
  this.badge,
  this.showInSidebar = true,
});