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