secondHalf method

List<T> secondHalf()

Takes the second half of a list

Implementation

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