EqBandConfig constructor

const EqBandConfig({
  1. required EqBandType type,
  2. required double frequencyHz,
  3. bool enabled = true,
  4. double q = 1.0,
  5. double gainDb = 0.0,
  6. double slope = 1.0,
})

Implementation

const EqBandConfig({
  required this.type,
  required this.frequencyHz,
  this.enabled = true,
  this.q = 1.0,
  this.gainDb = 0.0,
  this.slope = 1.0,
});