keys property

ValueCell<Iterable<K>> get keys

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

Implementation

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