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