ChatAvatar constructor

const ChatAvatar({
  1. Key? key,
  2. required PeerUser peer,
  3. bool showAvatar = true,
  4. Widget? userImage,
  5. double? width,
  6. double? height,
})

Implementation

const ChatAvatar({
  Key? key,
  required this.peer,
  this.showAvatar = true,
  this.userImage,
  this.width,
  this.height,
}) : super(key: key);