tail property

Iterable<T> tail

Returns an Iterable that is the original iterable without head, aka first element

Implementation

Iterable<T> get tail => _l.skip(1);