ObsMap<K, V>.unmodifiable constructor

ObsMap<K, V>.unmodifiable(
  1. ObsMap<K, V> other
)

Creates an unmodifiable hash-based map containing the entries of other.

Implementation

factory ObsMap.unmodifiable(ObsMap<K, V> other) =>
    ObsMap(Map<K, V>.unmodifiable(other));