flattened property

*<Null safety>*

Iterable<T> flattened

Implementation

Iterable<T> get flattened sync* {
  for (var elements in this) {
    yield* elements;
  }
}