ContiguousSparseList<T> constructor
ContiguousSparseList<T> ({})
Implementation
ContiguousSparseList({
int preallocateSize = _defaultPreallocateSize,
int growStep = _defaultGrowStep,
}) : _growStep = growStep {
_data = List<T?>.filled(preallocateSize, null, growable: false);
_indices = Set<int>.identity();
}