ConvolverOptions constructor

ConvolverOptions({
  1. AudioBuffer? buffer,
  2. bool? disableNormalization,
  3. num? channelCount,
  4. ChannelCountMode? channelCountMode,
  5. ChannelInterpretation? channelInterpretation,
})

Implementation

factory ConvolverOptions({
  _i3.AudioBuffer? buffer,
  _i2.bool? disableNormalization,
  _i2.num? channelCount,
  _i3.ChannelCountMode? channelCountMode,
  _i3.ChannelInterpretation? channelInterpretation,
}) =>
    ConvolverOptions._(
      buffer: buffer ?? _i6.undefined,
      disableNormalization: disableNormalization,
      channelCount: channelCount,
      channelCountMode: channelCountMode?.name ?? _i6.undefined,
      channelInterpretation: channelInterpretation?.name ?? _i6.undefined,
    );