AuiAvatar.large constructor

const AuiAvatar.large({
  1. Key? key,
  2. String? imageUrl,
  3. String? name,
  4. Color? backgroundColor,
  5. Color? foregroundColor,
  6. AvatarShape shape = AvatarShape.circle,
  7. Widget? badge,
  8. VoidCallback? onTap,
  9. Color? borderColor,
  10. double borderWidth = 0,
})

Creates a large avatar with size 56.

Implementation

const AuiAvatar.large({
  super.key,
  this.imageUrl,
  this.name,
  this.backgroundColor,
  this.foregroundColor,
  this.shape = AvatarShape.circle,
  this.badge,
  this.onTap,
  this.borderColor,
  this.borderWidth = 0,
}) : size = 56.0;