ProfilePic constructor

const ProfilePic(
  1. {Key? key,
  2. required Profile user,
  3. double size = 170,
  4. bool isFriend = false}
)

Implementation

const ProfilePic({
  super.key,
  required this.user,
  this.size = 170,
  this.isFriend = false,
});