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);
}