NiceAvatarGroup constructor

const NiceAvatarGroup({
  1. Key? key,
  2. required List<NiceAvatar> avatars,
  3. int maxVisible = 4,
  4. double size = 36,
  5. double overlapFraction = 0.3,
})

Implementation

const NiceAvatarGroup({
  super.key,
  required this.avatars,
  this.maxVisible = 4,
  this.size = 36,
  this.overlapFraction = 0.3,
});