skip method

Stream<T> skip(int count)

Skips the first count data events from this stream.

The returned stream is a broadcast stream if this stream is. For a broadcast stream, the events are only counted from the time the returned stream is listened to.

Source

Stream<T> skip(int count) {
  return new _SkipStream<T>(this, count);
}

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