MapView constructor - MapView - dart:collection library (original) (raw)

description

constMapView<K, V>(

  1. Map<K, V> map )

Creates a view which forwards operations to map.

Implementation

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