MapView<K, V> 构造函数

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

创建一个将操作转发到 map 的视图。

实现

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