ReadyAvatar constructor

const ReadyAvatar({
  1. Key? key,
  2. String? name,
  3. String? imageUrl,
  4. double size = 60.0,
  5. bool? isOnline,
  6. bool isCircular = true,
  7. double borderRadius = 12.0,
  8. double? onlineIndicatorSize,
  9. Color? textColor,
  10. Color? backgroundColor,
})

Implementation

const ReadyAvatar({
  super.key,
  this.name,
  this.imageUrl,
  this.size = 60.0,
  this.isOnline,
  this.isCircular = true,
  this.borderRadius = 12.0,
  this.onlineIndicatorSize,
  this.textColor,
  this.backgroundColor,
});