Drop first count items from this list, returning the remainder as a new list.
count
this
List<E> drop(int count) => sublist(min(count, length));