UFUAvatar constructor

const UFUAvatar({
  1. double? height,
  2. double? width,
  3. double radius = 50.0,
  4. Color? borderColor,
  5. bool? isDashedBorder,
  6. double? dashLength,
  7. UFUAvatarSize? size,
  8. Color? backgroundColor = UFUColor.transparent,
  9. Widget? child,
  10. double? borderWidth,
  11. Key? key,
})

Implementation

const UFUAvatar({
  this.height,
  this.width,
  this.radius = 50.0,
  this.borderColor,
  this.isDashedBorder,
  this.dashLength,
  this.size,
  this.backgroundColor = UFUColor.transparent,
  this.child,
  this.borderWidth,
  super.key});