AtomicNavigationRailDestination constructor

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

Implementation

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