copyFromChannel method

void copyFromChannel(Float32List destination, int channelNumber, [ int startInChannel ])

Source

void copyFromChannel(Float32List destination, int channelNumber,
    [int startInChannel]) {
  if (startInChannel != null) {
    _blink.BlinkAudioBuffer.instance.copyFromChannel_Callback_3_(
        this, destination, channelNumber, startInChannel);
    return;
  }
  _blink.BlinkAudioBuffer.instance
      .copyFromChannel_Callback_2_(this, destination, 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/copyFromChannel.html