AppAvatar constructor

const AppAvatar({
  1. Key? key,
  2. String? imageUrl,
  3. String? initials,
  4. double size = 48,
  5. VoidCallback? onTap,
})

Implementation

const AppAvatar({
  super.key,
  this.imageUrl,
  this.initials,
  this.size = 48,
  this.onTap,
});