FastNavigationDestination constructor

const FastNavigationDestination({
  1. required String label,
  2. required Widget icon,
  3. required String path,
  4. Widget? selectedIcon,
  5. String? tooltip,
  6. Key? key,
})

Implementation

const FastNavigationDestination({
  required this.label,
  required this.icon,
  required this.path,
  this.selectedIcon,
  this.tooltip,
  this.key,
});