drop method

List<E> drop(
  1. int count
)

Drop first count items from this list, returning the remainder as a new list.

Implementation

List<E> drop(int count) => sublist(min(count, length));