TypedMap constructor

TypedMap(
  1. Map<String, dynamic> map
)

Creates an immutable view of the given map.

The entries are copied.

Implementation

TypedMap(Map<String, dynamic> map) : _map = Map.unmodifiable(Map.from(map));