FastList<K> constructor

FastList<K>()

Implementation

FastList() {
  _map = <K, int>{};
  _index = 0;
}