CallQuality enum

Represents the quality of a call based on Mean Opinion Score (MOS).

Inheritance
Available extensions

Values

excellent → const CallQuality

Excellent call quality (MOS > 4.2)

good → const CallQuality

Good call quality (4.1 <= MOS <= 4.2)

fair → const CallQuality

Fair call quality (3.7 <= MOS <= 4.0)

poor → const CallQuality

Poor call quality (3.1 <= MOS <= 3.6)

bad → const CallQuality

Bad call quality (MOS <= 3.0)

unknown → const CallQuality

Unable to calculate quality

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
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
Returns a string representation of the call quality.
override

Operators

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

Static Methods

fromMos(double mos) CallQuality
Determines the call quality based on a Mean Opinion Score (MOS).

Constants

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