Audible class

Audible is a helper class that is used to be able to call the various methods within it, without having to declare a special variable.

Constructors

Audible()

Properties

hashCode int
The hash code for this object.
no setterinherited
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
A string representation of this object.
inherited

Operators

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

Static Properties

currentProfileStream Stream<AudibleProfile?>
This method allows you to have a stream of the system audio profile change
no setter
currentVolumeStream Stream<double>
This method allows you to have a stream of the system audio volume level when change
no setter
getAudibleProfile Future<AudibleProfile?>
This method allows you to get the AudibleProfile without having to create a stream
no setter
getCurrentVolume Future<double>
This method lets you know the volume level of the system
no setter
getMaxVolume Future<double>
This method lets you know the max volume level of the system Android -> Android max Volume iOS -> 1.0
no setter

Static Methods

setVolume(double volume) Future<bool>
This method allows you to set a value for the system volume In Android you can put a value from 0.0 to Android max Volume In iOS you can put a value from 0.0 to 1.0