PanelySidebar constructor

PanelySidebar({
  1. Key? key,
  2. required List<PanelySidebarWidget> menuItems,
  3. PanelySidebarConfiguration configuration = const PanelySidebarConfiguration(),
  4. double width = 200,
})

Implementation

PanelySidebar({
  super.key,
  required this.menuItems,
  this.configuration = const PanelySidebarConfiguration(),
  this.width = 200,
});