KiteAvatar constructor

const KiteAvatar({
  1. Key? key,
  2. String? imageUrl,
  3. String? name,
  4. double size = Dimensions.touchTarget,
  5. Widget? badge,
})

Implementation

const KiteAvatar({
  super.key,
  this.imageUrl,
  this.name,
  this.size = Dimensions.touchTarget,
  this.badge,
});