AudioNodeOptions constructor

AudioNodeOptions({
  1. int? channelCount,
  2. ChannelCountMode? channelCountMode,
  3. ChannelInterpretation? channelInterpretation,
})

Implementation

factory AudioNodeOptions(
        {int? channelCount,
        ChannelCountMode? channelCountMode,
        ChannelInterpretation? channelInterpretation}) =>
    AudioNodeOptions._(
        channelCount: channelCount ?? undefined,
        channelCountMode: channelCountMode?.value ?? undefined,
        channelInterpretation: channelInterpretation?.value ?? undefined);