CustomUserAvatar constructor

const CustomUserAvatar({
  1. required String? imageUrl,
  2. double? size = 120,
  3. double borderWidth = 3,
  4. Color? borderColor,
  5. VoidCallback? onTap,
  6. bool hasShadow = true,
  7. Key? key,
})

Implementation

const CustomUserAvatar({
  required this.imageUrl,
  this.size = 120,
  this.borderWidth = 3,
  this.borderColor,
  this.onTap,
  this.hasShadow = true,
  super.key,
});