void forEachItem(Function fn)

Source

void forEachItem(Function fn) {
  CollectionChangeRecord record;
  for (record = this._itHead;
      !identical(record, null);
      record = record._next) {
    fn(record);
  }
}