RxMap<K, V>.from constructor

RxMap<K, V>.from(
  1. Map<K, V> other
)

Implementation

factory RxMap.from(Map<K, V> other) {
  return RxMap(Map.from(other));
}