AnalyserNode constructor

AnalyserNode(
  1. AudioContext ctx, {
  2. int? fftSize,
})

Implementation

AnalyserNode(AudioContext ctx, { int? fftSize }): super(ctx, fftSize == null ? LabSound().createAnalyserNode(ctx.pointer) : LabSound().createAnalyserNodeFftSize(ctx.pointer, fftSize));