Avatar constructor

const Avatar({
  1. Key? key,
  2. String? avatarPath,
  3. String? defaultAvatarPath,
  4. bool isAvatarShow = true,
  5. double? avatarSize,
  6. Color? avatarColor,
  7. void avatarTap()?,
  8. Widget? customAvatarWidget,
})

Implementation

const Avatar(
    {super.key,
    this.avatarPath,
    this.defaultAvatarPath,
    this.isAvatarShow = true,
    this.avatarSize,
    this.avatarColor,
    this.avatarTap,
    this.customAvatarWidget});