void forEachRemovedItem(Function fn)

Source

void forEachRemovedItem(Function fn) {
  CollectionChangeRecord record;
  for (record = this._removalsHead;
      !identical(record, null);
      record = record._nextRemoved) {
    fn(record);
  }
}