ObsMap<K, V>.from constructor

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

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

Implementation

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