AtomicNavigationDestination constructor

const AtomicNavigationDestination({
  1. required IconData icon,
  2. IconData? selectedIcon,
  3. required String label,
  4. String? tooltip,
  5. AtomicBadge? badge,
  6. bool enabled = true,
})

Implementation

const AtomicNavigationDestination({
  required this.icon,
  this.selectedIcon,
  required this.label,
  this.tooltip,
  this.badge,
  this.enabled = true,
});