ProfileMenu constructor

const ProfileMenu({
  1. required AppUser user,
  2. VoidCallback? onLogout,
  3. VoidCallback? onProfile,
  4. VoidCallback? onSettings,
  5. Key? key,
})

Implementation

const ProfileMenu({
  required this.user,
  this.onLogout,
  this.onProfile,
  this.onSettings,
  super.key,
});