ParticipantTile constructor

const ParticipantTile({
  1. Key? key,
  2. required Attendee attendee,
  3. String? displayName,
  4. bool showNameLabel = true,
  5. bool showMicIndicator = true,
  6. BorderRadius borderRadius = const BorderRadius.all(Radius.circular(12)),
  7. Color backgroundColor = ChimeColors.surfaceVariant,
  8. TextStyle? avatarTextStyle,
  9. double avatarSize = 56,
  10. bool isActiveSpeaker = false,
})

Implementation

const ParticipantTile({
  super.key,
  required this.attendee,
  this.displayName,
  this.showNameLabel = true,
  this.showMicIndicator = true,
  this.borderRadius = const BorderRadius.all(Radius.circular(12)),
  this.backgroundColor = ChimeColors.surfaceVariant,
  this.avatarTextStyle,
  this.avatarSize = 56,
  this.isActiveSpeaker = false,
});