ModuleMenu constructor

const ModuleMenu({
  1. required String name,
  2. IconData? icon,
  3. Widget? image,
  4. String? description,
  5. required List<MenuGroup> menuGroups,
  6. dynamic onSelect(
    1. ModuleMenu
    )?,
  7. double? fontSize,
  8. FontWeight? fontWeight,
  9. double? iconSize,
})

Implementation

const ModuleMenu({
  required this.name,
  this.icon,
  this.image,
  this.description,
  required this.menuGroups,
  this.onSelect,
  this.fontSize,
  this.fontWeight,
  this.iconSize,
});