AudibleProfile enum Null safety
These are the system audio profiles in iOS there are only: AudibleProfile.SILENT_MODE and AudibleProfile.NORMAL_MODE
Constructors
- AudibleProfile()
-
const
Values
- SILENT_MODE → const AudibleProfile
-
const AudibleProfile(0)
- VIBRATE_MODE → const AudibleProfile
-
const AudibleProfile(1)
- NORMAL_MODE → const AudibleProfile
-
const AudibleProfile(2)
- UNDEFINED → const AudibleProfile
-
const AudibleProfile(3)
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<
AudibleProfile> -
A constant List of the values in this enum, in order of their declaration.
[SILENT_MODE, VIBRATE_MODE, NORMAL_MODE, UNDEFINED]