GroupAvatar<T> constructor

GroupAvatar<T>({
  1. Key? key,
  2. required List<T> items,
  3. required GroupAvatarWidgetBuilder builder,
  4. GroupAvatarStyle? style,
})

Implementation

GroupAvatar(
    {Key? key,
    required this.items,
    required this.builder,
    GroupAvatarStyle? style})
    : style = style ?? GroupAvatarStyle(),
      super(key: key);