Take count items from the end of this list, returning the result as a list.
count
List<E> takeLast(int count) => sublist(max(0, length - count));