toSet method
Returns a cell which evaluates to Iterable.toSet applied on the value in this cell.
Implementation
ValueCell<Set<T>> toSet() => apply((value) => value.toSet(),
key: _IterablePropKey(this, #toSet)
).store();
Returns a cell which evaluates to Iterable.toSet applied on the value in this cell.
ValueCell<Set<T>> toSet() => apply((value) => value.toSet(),
key: _IterablePropKey(this, #toSet)
).store();