entries property

ValueCell<Iterable<MapEntry<K, V>>> get entries

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

Implementation

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