ListChangeRecord<E>.add constructor

ListChangeRecord<E>.add(
  1. List<E> object,
  2. int index,
  3. int addedCount
)

Records an add operation at object[index] of addedCount elements.

Implementation

ListChangeRecord.add(this.object, this.index, this.addedCount)
    : removed = UnmodifiableListView([]) {
  _assertValidState();
}