RCKAvatarConfig constructor

const RCKAvatarConfig({
  1. AvatarShape shape = AvatarShape.circle,
  2. double size = avatarHeight,
  3. double borderRadius = 8.0,
  4. Color? borderColor,
  5. double? borderWidth,
  6. Color? backgroundColor,
  7. Offset? badgeOffset = const Offset(5, 6),
})

Implementation

const RCKAvatarConfig({
  this.shape = AvatarShape.circle,
  this.size = avatarHeight,
  this.borderRadius = 8.0,
  this.borderColor,
  this.borderWidth,
  this.backgroundColor,
  this.badgeOffset = const Offset(5, 6),
});