flatten method

Iterable<T> flatten()

Flattens an Iterable of Iterable values of type T to a Iterable of values of type T.

Implementation

Iterable<T> flatten() => expand((values) => values);