BiMap<K, V>.from constructor

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

Creates bi-map from another map.

Implementation

factory BiMap.from(Map<K, V> other) => BiMap.of(other);