name$

View as MarkdownOpen in Claude
get name$(): Observable<string | undefined>

Observable of the participant’s display name.

Inherited from

Participant.name$

name

get name(): string | undefined

Display name of this participant.

Inherited from

Participant.name

Examples

selfParticipant.name$.subscribe((name) => {
console.log('name:', name);
});