SidebarSectionProps constructor

const SidebarSectionProps({
  1. required String label,
  2. Widget? icon,
  3. required List<Widget> children,
})

Implementation

const SidebarSectionProps({
  required this.label,
  this.icon,
  required this.children,
});