Avatar constructor

const Avatar({
  1. Key? key,
  2. User? user,
  3. double size = 100,
  4. Color? avatarBackgroundColor,
})

Implementation

const Avatar({
  super.key,
  this.user,
  this.size = 100,
  this.avatarBackgroundColor,
});