AvatarWrapper constructor

const AvatarWrapper(
  1. {required User user,
  2. Key? key,
  3. bool showName = false,
  4. EdgeInsets padding = const EdgeInsets.only(top: 16),
  5. double size = 100,
  6. TextStyle? textStyle,
  7. Widget? customAvatar,
  8. Color? avatarBackgroundColor}
)

Implementation

const AvatarWrapper({
  required this.user,
  super.key,
  this.showName = false,
  this.padding = const EdgeInsets.only(top: 16),
  this.size = 100,
  this.textStyle,
  this.customAvatar,
  this.avatarBackgroundColor,
});