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