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