toList method

ValueCell<List<T>> toList()

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();