ChatAvatar constructor

const ChatAvatar({
  1. required double width,
  2. required double height,
  3. CornerRadius? cornerRadius,
  4. EdgeInsets? margin,
  5. UserInfoProtocol? user,
  6. Key? key,
})

Implementation

const ChatAvatar({
  required this.width,
  required this.height,
  this.cornerRadius,
  this.margin,
  this.user,
  super.key,
});