Drop last count items from this list, returning the remainder as a new list.
count
this
List<E> dropLast(int count) => sublist(0, max(0, length - count));