FastList<K>.from constructor

FastList<K>.from(
  1. FastList<K> other
)

Implementation

FastList.from(FastList<K> other) {
  _map = Map<K, int>.from(other._map);
  _index = other._index;
}