FollyMenuHeader<O> constructor

const FollyMenuHeader<O>({
  1. required String name,
  2. required String email,
  3. String companyName = '',
  4. Widget? expanded,
  5. Color? color,
  6. Color? background,
  7. List<PopupIconMenuItem<O>>? menuItems,
  8. dynamic onMenuSelect(
    1. O operation
    )?,
  9. Key? key,
})

Implementation

const FollyMenuHeader({
  required this.name,
  required this.email,
  this.companyName = '',
  this.expanded,
  this.color,
  this.background,
  this.menuItems,
  this.onMenuSelect,
  super.key,
});