AppAvatarImage constructor

const AppAvatarImage({
  1. Key? key,
  2. String? imageSource,
  3. XFile? pickedFile,
  4. double radius = 40,
  5. double? borderRadius,
  6. bool isCircular = true,
  7. Color? backgroundColor,
  8. IconData? placeholderIcon = Icons.person,
})

Implementation

const AppAvatarImage({
  super.key,
  this.imageSource,
  this.pickedFile,
  this.radius = 40,
  this.borderRadius,
  this.isCircular = true,
  this.backgroundColor,
  this.placeholderIcon = Icons.person,
});