RxMap<K, V>.of constructor
RxMap<K, V>.of (
- Map<
K, V> other
Creates a LinkedHashMap with the same keys and values as other
.
Implementation
factory RxMap.of(Map<K, V> other) => RxMap<K, V>(Map<K, V>.of(other));