AvatarProps constructor

const AvatarProps({
  1. String? imageUrl,
  2. String? initials,
  3. AvatarSize size = AvatarSize.md,
  4. AvatarShape shape = AvatarShape.circle,
  5. String? borderColor,
  6. bool showStatus = false,
  7. String? statusColor,
  8. void onTap()?,
})

Implementation

const AvatarProps({
  this.imageUrl,
  this.initials,
  this.size = AvatarSize.md,
  this.shape = AvatarShape.circle,
  this.borderColor,
  this.showStatus = false,
  this.statusColor,
  this.onTap,
});