FastNavigationDestination constructor

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

Implementation

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