MapView<K, V> constructor

const MapView<K, V>(
  1. Map<K, V> map
)

Creates a view which forwards operations to map.

Implementation

const MapView(Map<K, V> map) : _map = map;