CocobaseUserAvatar constructor

const CocobaseUserAvatar({
  1. Key? key,
  2. required AppUser user,
  3. double radius = 20,
  4. Color? backgroundColor,
  5. TextStyle? initialsStyle,
})

Implementation

const CocobaseUserAvatar({
  super.key,
  required this.user,
  this.radius = 20,
  this.backgroundColor,
  this.initialsStyle,
});