MediaOffReason enum Null safety
user
: The user explicitly wants the media to be off. This occurs for remote media with eitherisEnabled
orisPublishing
set tofalse
or local media withisEnabled
set tofalse
.bandwidth
: The media has been automatically stopped due to bandwidth concerns. This only applies to remote media.sendPermission
: The media is off due to the sender lacking propercanSend
permission. This only applies to remote media.
Constructors
- MediaOffReason()
-
const
Values
- user → const MediaOffReason
- bandwidth → const MediaOffReason
- sendPermission → const MediaOffReason
Properties
Methods
-
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
Constants
-
values
→ const List<
MediaOffReason> -
A constant List of the values in this enum, in order of their declaration.
[user, bandwidth, sendPermission]