Stream<SecureSocket> 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

/**
 * 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.
 */
Stream<T> skip(int count) {
  return new _SkipStream(this, count);
}