Flattens a List<List<E>> into a single List<E>.
List<List<E>>
List<E>
List<E> flatten() => [for (final list in this) ...list];