secondHalf method

List<E> secondHalf()

Returns the second half of the iterable.

Implementation

List<E> secondHalf() => drop(halfLength).toList();