ParticipantStatus enum Models

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.

ParticipantStatus('CONNECTED')
onAir → const ParticipantStatus

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

ParticipantStatus('ON_AIR')
connecting → const ParticipantStatus

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

ParticipantStatus('CONNECTING')
decline → const ParticipantStatus

The invited participant has declined a conference invitation.

ParticipantStatus('DECLINE')
error → const ParticipantStatus

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

ParticipantStatus('ERROR')
inactive → const ParticipantStatus

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

ParticipantStatus('INACTIVE')
kicked → const ParticipantStatus

The participant has been kicked out of a conference.

ParticipantStatus('KICKED')
left → const ParticipantStatus

The participant has left a conference.

ParticipantStatus('LEFT')
reserved → const ParticipantStatus

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

ParticipantStatus('RESERVED')
warning → const ParticipantStatus

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

ParticipantStatus('WARNING')
unknow → const ParticipantStatus

The participant status is undefined

ParticipantStatus('UNKNOWN')

Properties

hashCode int
The hash code for this object.
read-onlyinherited
index int
A numeric identifier for the enumerated value.
read-onlyinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

encode() String
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent 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

decode(String? value) ParticipantStatus?

Constants

values → const List<ParticipantStatus>
A constant List of the values in this enum, in order of their declaration.
[connected, onAir, connecting, decline, error, inactive, kicked, left, reserved, warning, unknow]