entries property
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)
);
Returns a cell which evaluates to Map.entries applied on the value in this cell.
ValueCell<Iterable<MapEntry<K,V>>> get entries => apply((map) => map.entries,
key: _MapPropKey(this, #entries)
);