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