NextAvatarGroup constructor

const NextAvatarGroup({
  1. Key? key,
  2. Widget limitBuilder(
    1. BuildContext context,
    2. int hiddenitemCount
    )?,
  3. required List<ImageProvider<Object>> imagesList,
  4. int? itemCount,
  5. double outerRadius = 24.0,
  6. int? limitTo,
  7. Widget itemBuilder(
    1. BuildContext context,
    2. int index,
    3. ImageProvider<Object> image
    )?,
  8. Color? backgroundColor,
  9. double widthFactor = 0.6,
  10. double radius = 20.0,
})

Implementation

const NextAvatarGroup(
    {Key? key,
    this.limitBuilder,
    required this.imagesList,
    this.itemCount,
    this.outerRadius = 24.0,
    this.limitTo,
    this.itemBuilder,
    this.backgroundColor,
    this.widthFactor = 0.6,
    this.radius = 20.0})
    : super(key: key);