RxMap<K, V>.of constructor

RxMap<K, V>.of(
  1. 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));
}