NiceNavItem constructor

const NiceNavItem({
  1. required String path,
  2. required IconData icon,
  3. required String label,
  4. IconData? selectedIcon,
  5. int? badge,
  6. List<NiceNavItem> children = const [],
})

Implementation

const NiceNavItem({
  required this.path,
  required this.icon,
  required this.label,
  this.selectedIcon,
  this.badge,
  this.children = const [],
});