drop method

Iterable<T> drop(
  1. int n
)

Return the suffix of this Iterable after the first n elements.

Same as standard dart skip.

Implementation

Iterable<T> drop(int n) => skip(n);