Sound class abstract

Implementers

Constructors

Sound()

Properties

engine SoundEngine
no setter
hashCode int
The hash code for this object.
no setterinherited
length num
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
play([bool loop = false, SoundTransform? soundTransform]) SoundChannel
playSegment(num startTime, num duration, [bool loop = false, SoundTransform? soundTransform]) SoundChannel
toString() String
A string representation of this object.
inherited

Operators

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

Static Properties

defaultLoadOptions SoundLoadOptions
The default loading options for the Sound.load method.
getter/setter pair
supportedTypes List<String>
Get a list of the audio types supported by the browser.
no setter

Static Methods

load(String url, [SoundLoadOptions? soundLoadOptions]) Future<Sound>
Loads a sound from a file url.
loadDataUrl(String dataUrl, [SoundLoadOptions? soundLoadOptions]) Future<Sound>
Loads a sound from a data url.