Dart DocumentationstagexlSoundTransform

SoundTransform class

class SoundTransform {

 num volume;
 num pan;
 //num leftToLeft = 1;
 //num leftToRight = 0;
 //num rightToRight = 1;
 //num rightToLeft = 0;

 SoundTransform([this.volume = 1, this.pan = 0]);

 SoundTransform.mute():this(0, 0);
}

Constructors

new SoundTransform([num volume = 1, num pan = 0]) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
SoundTransform([this.volume = 1, this.pan = 0]);

new SoundTransform.mute() #

SoundTransform.mute():this(0, 0);

Properties

num pan #

num pan

num volume #

num volume