UserProfileItem constructor

const UserProfileItem({
  1. required String iconPath,
  2. required String title,
  3. required dynamic onTap(),
  4. Color? itemBackgroundColor,
})

UserProfileItem Displays the user profile item with Icons and a title

Implementation

const UserProfileItem({
  required this.iconPath,
  required this.title,
  required this.onTap,
  this.itemBackgroundColor,
});