copyToChannel method

void copyToChannel(Float32List source, int channelNumber, [ int startInChannel ])

Source

void copyToChannel(Float32List source, int channelNumber,
    [int startInChannel]) {
  if (startInChannel != null) {
    _blink.BlinkAudioBuffer.instance.copyToChannel_Callback_3_(
        this, source, channelNumber, startInChannel);
    return;
  }
  _blink.BlinkAudioBuffer.instance
      .copyToChannel_Callback_2_(this, source, channelNumber);
  return;
}

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-web_audio/AudioBuffer/copyToChannel.html