Flattens a Stream of Iterable values of type T to a Stream of values of type T.
T
Stream<T> flatten() => expand((values) => values);