AudioBandModel constructor

AudioBandModel({
  1. double frequency = 0,
  2. double gain = 0,
  3. bool bypass = false,
})

Implementation

AudioBandModel({
  this.frequency = 0,
  this.gain = 0,
  this.bypass = false,
});