appendStream method

void appendStream(FileStream stream, [ int maxSize ])

Source

void appendStream(FileStream stream, [int maxSize]) {
  if (maxSize != null) {
    _blink.BlinkSourceBuffer.instance
        .appendStream_Callback_2_(this, stream, maxSize);
    return;
  }
  _blink.BlinkSourceBuffer.instance.appendStream_Callback_1_(this, stream);
  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-html/SourceBuffer/appendStream.html