StreamGroupAvatar constructor

const StreamGroupAvatar({
  1. Key? key,
  2. Channel? channel,
  3. required List<Member> members,
  4. BoxConstraints? constraints,
  5. VoidCallback? onTap,
  6. BorderRadius? borderRadius,
  7. bool selected = false,
  8. Color? selectionColor,
  9. double selectionThickness = 4,
})

Widget for constructing a group of images

Implementation

const StreamGroupAvatar({
  super.key,
  this.channel,
  required this.members,
  this.constraints,
  this.onTap,
  this.borderRadius,
  this.selected = false,
  this.selectionColor,
  this.selectionThickness = 4,
});