ProfileMenuOption constructor

const ProfileMenuOption({
  1. required String title,
  2. String? subtitle,
  3. required IconData icon,
  4. OnSelectedCallback? onSelected,
})

Implementation

const ProfileMenuOption({
  required this.title,
  this.subtitle,
  required this.icon,
  this.onSelected,
});