ConferenceStatus enum

The ConferenceStatus enum represents the possible conference statuses.

Inheritance

Constructors

ConferenceStatus(String name)
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')
DEFAULT → 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
name String
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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) ConferenceStatus

Constants

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