Takes the last count elements from the iterable.
count
Iterable<String> takeLast(int count) { return toList().reversed.take(count).toList().reversed; }