Conference class Models

The Conference class gathers information about a conference.

Constructors

Conference(String? alias, String? id, bool? isNew, List<Participant> participants, ConferenceStatus status, SpatialAudioStyle? spatialAudioStyle)

Properties

alias String?
The conference alias. The alias is case insensitive, which means that using "foobar" and "FOObar" aliases results in joining the same conference.
read / write
hashCode int
The hash code for this object.
read-onlyinherited
id String?
The conference ID.
read / write
isNew bool?
A boolean indicating if the created conference is new.
read / write
participants List<Participant>
A list of conference participants.
read / write
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited
spatialAudioStyle SpatialAudioStyle?
read / write
status ConferenceStatus
The current conference status.
read / write

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
toJson() Map<String, Object?>
Returns a representation of this object as a JSON object.
toString() String
A string representation of this object.
inherited

Operators

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