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) {
return RxMap(Map.of(other));
}