Avatar constructor

const Avatar({
  1. Key? key,
  2. String? url,
  3. String? name,
  4. double size = 32,
})

Implementation

const Avatar({
  super.key,
  this.url,
  this.name,
  this.size = 32,
});