Multimap<K, V>.fromMultimap constructor
Multimap<K, V>.fromMultimap (
- 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;