MapView constructor - MapView - dart:collection library (original) (raw)
constMapView<K, V>(
- Map<K, V> map )
Creates a view which forwards operations to map
.
Implementation
const MapView(Map<K, V> map) : _map = map;
constMapView<K, V>(
Creates a view which forwards operations to map
.
const MapView(Map<K, V> map) : _map = map;