ParticipantStatus enum

The ParticipantStatus enum gathers the possible statuses of a conference participant.

Inheritance

Constructors

ParticipantStatus(String value)
const

Values

CONNECTED → const ParticipantStatus

The participant has successfully connected to a conference.

const ParticipantStatus('CONNECTED')
ON_AIR → const ParticipantStatus

A participant successfully connected to a conference. In the next release, this status will be replaced with a new status.

const ParticipantStatus('ON_AIR')
CONNECTING → const ParticipantStatus

The participant has received a conference invitation and is connecting to the conference.

const ParticipantStatus('CONNECTING')
DECLINE → const ParticipantStatus

The invited participant has declined a conference invitation.

const ParticipantStatus('DECLINE')
ERROR → const ParticipantStatus

A peer connection has failed and the participant cannot connect to a conference.

const ParticipantStatus('ERROR')
INACTIVE → const ParticipantStatus

The participant did not enable audio, video, or screen-share and is not connected to any stream.

const ParticipantStatus('INACTIVE')
KICKED → const ParticipantStatus

The participant has been kicked out of a conference.

const ParticipantStatus('KICKED')
LEFT → const ParticipantStatus

The participant has left a conference.

const ParticipantStatus('LEFT')
RESERVED → const ParticipantStatus

The participant has been invited to a conference and is waiting for an invitation.

const ParticipantStatus('RESERVED')
WARNING → const ParticipantStatus

The participant has encountered a peer connection problem that may result in the Error or Connected status.

const ParticipantStatus('WARNING')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value String
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

valueOf(String? value) ParticipantStatus?

Constants

values → const List<ParticipantStatus>
A constant List of the values in this enum, in order of their declaration.