RxObsSplayTreeMap<K, V>.fromIterable constructor

RxObsSplayTreeMap<K, V>.fromIterable(
  1. Iterable iterable, {
  2. K key(
    1. dynamic element
    )?,
  3. V value(
    1. dynamic element
    )?,
})

Creates a new SplayTreeMap instance in which the keys and values are computed from the provided iterable.

Implementation

factory RxObsSplayTreeMap.fromIterable(
  Iterable iterable, {
  K Function(dynamic element)? key,
  V Function(dynamic element)? value,
}) => RxObsSplayTreeMap(
  Map<K, V>.fromIterable(iterable, key: key, value: value),
);