NiceAvatarGroup constructor

const NiceAvatarGroup({
  1. Key? key,
  2. required List<NiceUserItem> users,
  3. int maxDisplay = 4,
  4. NiceAvatarSize size = NiceAvatarSize.md,
  5. double overlap = 0.3,
  6. VoidCallback? onTap,
  7. void onAvatarTap(
    1. NiceUserItem user
    )?,
})

Implementation

const NiceAvatarGroup({
  super.key,
  required this.users,
  this.maxDisplay = 4,
  this.size = NiceAvatarSize.md,
  this.overlap = 0.3,
  this.onTap,
  this.onAvatarTap,
});