ConferenceStatus enum Models

The ConferenceStatus enum represents the possible conference statuses.

Inheritance

Constructors

ConferenceStatus(String _value)
const

Values

created → const ConferenceStatus

The conference has been created.

ConferenceStatus('CREATED')
creating → const ConferenceStatus

The SDK is currently creating the conference.

ConferenceStatus('CREATING')
defaultStatus → const ConferenceStatus

The default conference status.

ConferenceStatus('DEFAULT')
destroyed → const ConferenceStatus

The conference has been destroyed. This status may be triggered by the following situations:

  • The last conference participant leaves the conference
  • The time to live or the conference time limit elapses
  • The conference creator uses the Terminate REST API to terminate the conference
ConferenceStatus('DESTROYED')
ended → const ConferenceStatus

A conference has ended.

ConferenceStatus('ENDED')
error → const ConferenceStatus

An error has occurred.

ConferenceStatus('ERROR')
joined → const ConferenceStatus

The local participant has successfully joined the conference.

ConferenceStatus('JOINED')
joining → const ConferenceStatus

The local participant is joining the conference.

ConferenceStatus('JOINING')
leaving → const ConferenceStatus

The local participant is leaving the conference.

ConferenceStatus('LEAVING')
left → const ConferenceStatus

The local participant has successfully left the conference.

ConferenceStatus('LEFT')

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
@internal
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) ConferenceStatus?
@internal

Constants

values → const List<ConferenceStatus>
A constant List of the values in this enum, in order of their declaration.
[created, creating, defaultStatus, destroyed, ended, error, firstParticipant, joined, joining, leaving, left, noMoreParticipant]