orgNavDestinations top-level constant

  1. @visibleForTesting
List<({IconData icon, String label})> const orgNavDestinations

Nav destinations of the org admin shell. Label + icon mirror the personal shell's navDestinations; 5 entries for Dashboard, Members, Assignments, Analytics, and Org Settings.

Implementation

@visibleForTesting
const orgNavDestinations = <({IconData icon, String label})>[
  (icon: Icons.dashboard_rounded, label: 'Dashboard'),
  (icon: Icons.group_rounded, label: 'Members'),
  (icon: Icons.assignment_rounded, label: 'Assignments'),
  (icon: Icons.analytics_rounded, label: 'Analytics'),
  (icon: Icons.settings_rounded, label: 'Settings'),
];