UserAvatar constructor

const UserAvatar({
  1. Key? key,
  2. required ModelBaseUser? user,
  3. void onTap()?,
})

The constructor for the user avatar.

Implementation

const UserAvatar({
  super.key,
  required this.user,
  this.onTap,
});