AudioMasterState constructor

AudioMasterState({
  1. int index = 0,
  2. int gain = 0,
  3. int balance = 0,
  4. bool mute = false,
  5. bool solo = false,
  6. int faderGain = 0,
  7. bool faderMute = false,
})

Implementation

AudioMasterState({
  this.index = 0,
  this.gain = 0,
  this.balance = 0,
  this.mute = false,
  this.solo = false,
  this.faderGain = 0,
  this.faderMute = false,
});