soundLoadOptions property

SoundLoadOptions soundLoadOptions

The default SoundLoadOptions used by Sound.load.

The default options are used if no individual options are passed to the Sound.load method. Please note that this property is just a forward to Sound.defaultLoadOptions.

Implementation

static SoundLoadOptions get soundLoadOptions => Sound.defaultLoadOptions;
void soundLoadOptions=(SoundLoadOptions options)

Implementation

static set soundLoadOptions(SoundLoadOptions options) {
  Sound.defaultLoadOptions = options;
}