ComfortNoiseLevel enum Models

The ComfortNoiseLevel enum gathers the available comfort noise levels.

Inheritance

Constructors

ComfortNoiseLevel(String _value)
const

Values

defaultLevel → const ComfortNoiseLevel

The default comfort noise level that is based on the device database. The database contains the proper comfort noise levels, individual for all devices.

ComfortNoiseLevel('default')
low → const ComfortNoiseLevel

The low comfort noise level.

ComfortNoiseLevel('low')
medium → const ComfortNoiseLevel

The medium comfort noise level.

ComfortNoiseLevel('medium')
off → const ComfortNoiseLevel

The disabled comfort noise.

ComfortNoiseLevel('off')

Properties

hashCode int
The hash code for this object.
read-onlyinherited
index int
A numeric identifier for the enumerated value.
read-onlyinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

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

Static Methods

decode(String? value) ComfortNoiseLevel

Constants

values → const List<ComfortNoiseLevel>
A constant List of the values in this enum, in order of their declaration.
[defaultLevel, low, medium, off]