AnequalizerBand constructor

const AnequalizerBand({
  1. required double frequency,
  2. required double bandwidth,
  3. required double gain,
  4. AnequalizerBandType type = AnequalizerBandType.butterworth,
})

Creates an AnequalizerBand.

Implementation

const AnequalizerBand({
  required this.frequency,
  required this.bandwidth,
  required this.gain,
  this.type = AnequalizerBandType.butterworth,
});