UserItem constructor

const UserItem(
  1. {Key? key,
  2. required Profile user,
  3. Friendship? friendship,
  4. bool showDetailedStatus = false}
)

Implementation

const UserItem({
  super.key,
  required this.user,
  this.friendship,
  this.showDetailedStatus = false,
});