RxMap<K, V>.unmodifiable constructor
RxMap<K, V>.unmodifiable (
- Map other
Creates an unmodifiable hash based map containing the entries of other
.
Implementation
factory RxMap.unmodifiable(Map<dynamic, dynamic> other) {
return RxMap(Map.unmodifiable(other));
}