MenuGroup constructor

const MenuGroup({
  1. required Widget title,
  2. required List<MenuItem> items,
  3. String? claimName,
  4. double? fontSize,
  5. FontWeight? fontWeight,
  6. double? iconSize,
})

Implementation

const MenuGroup({
  required this.title,
  required this.items,
  this.claimName,
  this.fontSize,
  this.fontWeight,
  this.iconSize,
});