values property

ValueCell<Iterable<V>> get values

Returns a cell which evaluates to Map.values applied on the value in this cell.

Implementation

ValueCell<Iterable<V>> get values => apply((map) => map.values,
    key: _MapPropKey(this, #values)
);