UserItem constructor
- {Key? key,
- required Profile user,
- Friendship? friendship,
- bool showDetailedStatus = false}
Implementation
const UserItem({
super.key,
required this.user,
this.friendship,
this.showDetailedStatus = false,
});
const UserItem({
super.key,
required this.user,
this.friendship,
this.showDetailedStatus = false,
});