flattenedToList property

Coral<List<T>> get flattenedToList

Flattens this collection of iterables into a single iterable reactively.

Implementation

Coral<List<T>> get flattenedToList =>
    coral.map((source) => List.unmodifiable(source.flattened));