ProfileMenuWidget constructor

const ProfileMenuWidget({
  1. Key? key,
  2. required String title,
  3. required IconData icon,
  4. required VoidCallback onPress,
  5. bool endIcon = true,
  6. Color? textColor,
})

Implementation

const ProfileMenuWidget({
  super.key,
  required this.title,
  required this.icon,
  required this.onPress,
  this.endIcon = true,
  this.textColor,
});