AudioSpectrumValue constructor

AudioSpectrumValue({
  1. required List<int> levels,
  2. required List<int> peakLevels,
  3. required List<int> meanLevels,
})

Implementation

AudioSpectrumValue({
  required this.levels,
  required this.peakLevels,
  required this.meanLevels,
});