SidebarGroup constructor

const SidebarGroup({
  1. String? label,
  2. required List<Component> children,
  3. bool collapsed = false,
  4. Key? key,
})

Implementation

const SidebarGroup({
  this.label,
  required this.children,
  this.collapsed = false,
  super.key,
});