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.

const ConferenceStatus('CREATED')
creating → const ConferenceStatus

The SDK is currently creating the conference.

const ConferenceStatus('CREATING')
defaultStatus → const ConferenceStatus

The default conference status.

const 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
const ConferenceStatus('DESTROYED')
ended → const ConferenceStatus

A conference has ended.

const ConferenceStatus('ENDED')
error → const ConferenceStatus

An error has occurred.

const ConferenceStatus('ERROR')
joined → const ConferenceStatus

The local participant has successfully joined the conference.

const ConferenceStatus('JOINED')
joining → const ConferenceStatus

The local participant is joining the conference.

const ConferenceStatus('JOINING')
leaving → const ConferenceStatus

The local participant is leaving the conference.

const ConferenceStatus('LEAVING')
left → const ConferenceStatus

The local participant has successfully left the conference.

const ConferenceStatus('LEFT')

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

Methods

encode() String
@internal
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

decode(String value) ConferenceStatus?
@internal

Constants

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