Avatar constructor

const Avatar({
  1. Key? key,
  2. String? imageUrl,
  3. VoidCallback? onTap,
})

Implementation

const Avatar({
  super.key,
  this.imageUrl,
  this.onTap,
});