ParticipantTile constructor
const
ParticipantTile({
- Key? key,
- required Attendee attendee,
- String? displayName,
- bool showNameLabel = true,
- bool showMicIndicator = true,
- BorderRadius borderRadius = const BorderRadius.all(Radius.circular(12)),
- Color backgroundColor = ChimeColors.surfaceVariant,
- TextStyle? avatarTextStyle,
- double avatarSize = 56,
- 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,
});