FftFrame constructor

const FftFrame({
  1. required Float32List bins,
  2. required Float32List bands,
  3. required Duration timestamp,
  4. required int sampleRate,
  5. required double bandLowHz,
  6. required double bandHighHz,
})

Creates a frame. Only used internally by the spectrum pipeline.

Implementation

const FftFrame({
  required this.bins,
  required this.bands,
  required this.timestamp,
  required this.sampleRate,
  required this.bandLowHz,
  required this.bandHighHz,
});