SidebarItemProps constructor

const SidebarItemProps({
  1. required String label,
  2. Widget? icon,
  3. void onTap()?,
  4. String? href,
  5. bool selected = false,
  6. bool disabled = false,
  7. String? badge,
  8. bool collapsed = false,
  9. String? tooltip,
})

Implementation

const SidebarItemProps({
  required this.label,
  this.icon,
  this.onTap,
  this.href,
  this.selected = false,
  this.disabled = false,
  this.badge,
  this.collapsed = false,
  this.tooltip,
});