TTMultiMapList<V>.from constructor

TTMultiMapList<V>.from(
  1. TTMultiMap<V> other
)

Create a TTMultiMapList from a TTMultiMap.

Implementation

TTMultiMapList.from(TTMultiMap<V> other)
    : super.from(other as _TTMultiMapImpl<V>) {
  final root = other._root;
  if (!identical(root, null)) {
    _root = NodeList.from(root, null, _runePool);
  }
}