flatten property

Iterable<E> flatten

Returns a single Iterable of all elements from all Iterables in the the Iterable.

Implementation

Iterable<E> get flatten => expand((element) => element);