RxObsSplayTreeMap<K, V>.fromIterables constructor

RxObsSplayTreeMap<K, V>.fromIterables(
  1. Iterable<K> keys,
  2. Iterable<V> values
)

Creates a new SplayTreeMap associating the given keys to the given values.

Implementation

factory RxObsSplayTreeMap.fromIterables(
  Iterable<K> keys,
  Iterable<V> values,
) => RxObsSplayTreeMap(Map<K, V>.fromIterables(keys, values));