FftFrame constructor
const
FftFrame({
- required Float32List bins,
- required Float32List bands,
- required Duration timestamp,
- required int sampleRate,
- required double bandLowHz,
- 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,
});