ListChangeRecord<E> constructor

ListChangeRecord<E>(
  1. List<E> object,
  2. int index, {
  3. List<E>? removed,
  4. int addedCount = 0,
})

Implementation

factory ListChangeRecord(
  List<E> object,
  int index, {
  List<E>? removed,
  int addedCount = 0,
}) {
  return ListChangeRecord._(
      object, index, removed ?? UnmodifiableListView([]), addedCount);
}