NullableList<T> constructor

NullableList<T>(
  1. List<T> delegate,
  2. T defaultValue,
  3. bool isDefined
)

Implementation

NullableList(this.delegate, this.defaultValue, bool isDefined)
    : defined = BitList.filled(delegate.length, isDefined);