flattenedToSet property
Coral<Set<T> >
get
flattenedToSet
Flattens this collection of iterables into a single set reactively.
Implementation
Coral<Set<T>> get flattenedToSet =>
coral.map((source) => Set.unmodifiable(source.flattened.toSet()));