FriendProfile constructor

const FriendProfile({
  1. Key? key,
  2. required String userName,
  3. required bool isFriend,
  4. bool? isPending,
})

Implementation

const FriendProfile({
  super.key,
  required this.userName,
  required this.isFriend,
  this.isPending,
});