AnalyserOptions constructor
AnalyserOptions({})
Implementation
factory AnalyserOptions(
{int? fftSize,
double? maxDecibels,
double? minDecibels,
double? smoothingTimeConstant}) =>
AnalyserOptions._(
fftSize: fftSize ?? 2048,
maxDecibels: maxDecibels ?? -30,
minDecibels: minDecibels ?? -100,
smoothingTimeConstant: smoothingTimeConstant ?? 0.8);