SidebarItem constructor

SidebarItem({
  1. required String title,
  2. required IconData icon,
  3. List<SidebarChildItem> children = const [],
  4. bool isExpandable = false,
})

Implementation

SidebarItem({
  required this.title,
  required this.icon,
  this.children = const [],
  this.isExpandable = false,
});