Multimap<K, V>.fromMultimap constructor

Multimap<K, V>.fromMultimap(
  1. Multimap<K, V> other
)

Constructs a new multimap with the same values as other.

Implementation

factory Multimap.fromMultimap(Multimap<K, V> other) =
    ListMultimap<K, V>.fromMultimap;