Returns a list containing all elements except last n elements.
n
Iterable<T> dropLast(int n) => take(length - n);