NiceProfileMenu constructor

const NiceProfileMenu({
  1. Key? key,
  2. required String name,
  3. String? subtitle,
  4. String? avatarUrl,
  5. required List<NiceProfileMenuItem> menuItems,
  6. VoidCallback? onProfileTap,
  7. VoidCallback? onSignOut,
})

Implementation

const NiceProfileMenu({
  super.key,
  required this.name,
  this.subtitle,
  this.avatarUrl,
  required this.menuItems,
  this.onProfileTap,
  this.onSignOut,
});