Avatar constructor

const Avatar({
  1. String imageUrl = '',
  2. String label = '',
  3. double radius = 36.0,
  4. VoidCallback? onPressed,
  5. Key? key,
})

Implementation

const Avatar(
    {this.imageUrl = '',
    this.label = '',
    this.radius = 36.0,
    this.onPressed,
    Key? key})
    : super(key: key);