ProfileAvatar constructor

const ProfileAvatar({
  1. Key? key,
  2. required double size,
  3. required Color borderColor,
  4. double borderWidth = 2.0,
  5. String? profileImagePath,
  6. String? userName,
  7. String? status,
})

Implementation

const ProfileAvatar({
  super.key,
  required this.size,
  required this.borderColor,
  this.borderWidth = 2.0,
  this.profileImagePath,
  this.userName,
  this.status,
});