ObsMap<K, V>.of constructor

ObsMap<K, V>.of(
  1. Map<K, V> other
)

Creates a LinkedHashMap with the same keys and values as other.

Implementation

factory ObsMap.of(Map<K, V> other) => ObsMap(Map<K, V>.of(other));