ObsMap<K, V>.fromIterables constructor
Creates a map associating the given keys
to the given values
.
Implementation
factory ObsMap.fromIterables(Iterable<K> keys, Iterable<V> values) =>
ObsMap(Map<K, V>.fromIterables(keys, values));