skip method

  1. @override
Iterable<E> skip(
  1. int n
)
override

Returns an iterable that skips the first n elements.

This is a non-mutating operation that returns an iterable.

Implementation

@override
Iterable<E> skip(int n) => value.skip(n);