RxObsSplayTreeMap<K, V>.fromEntries constructor

RxObsSplayTreeMap<K, V>.fromEntries(
  1. Iterable<MapEntry<K, V>> entries
)

Creates a new SplayTreeMap and adds all the provided entries to it.

Implementation

factory RxObsSplayTreeMap.fromEntries(Iterable<MapEntry<K, V>> entries) =>
    RxObsSplayTreeMap(Map<K, V>.fromEntries(entries));