RxMap<K, V>.unmodifiable constructor

RxMap<K, V>.unmodifiable(
  1. Map<K, V> other
)

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

Implementation

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