AtomicBottomBarItem constructor

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

Implementation

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