ModSidebar constructor

const ModSidebar({
  1. Key? key,
  2. required List<MenuGroup> menuGroups,
  3. Color? backgroundColor,
  4. Color? selectedColor,
  5. Color? unselectedColor,
  6. Widget? header,
  7. Widget? footer,
  8. List<String>? claims,
  9. double? fontSize,
  10. FontWeight? fontWeight,
  11. double? iconSize,
})

Implementation

const ModSidebar({
  super.key,
  required this.menuGroups,
  this.backgroundColor,
  this.selectedColor,
  this.unselectedColor,
  this.header,
  this.footer,
  this.claims,
  this.fontSize,
  this.fontWeight,
  this.iconSize,
});