ProfileAvatar constructor

const ProfileAvatar({
  1. Key? key,
  2. required String imagePath,
  3. double height = 50.0,
  4. double width = 50.0,
})

Implementation

const ProfileAvatar({
  super.key,
  required this.imagePath,
  this.height = 50.0,
  this.width = 50.0,
});