ArcaneSidebarGroup constructor

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

Implementation

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