void addAll(Iterable<E> entries)

Add entries to the end of the linked list.

Source

void addAll(Iterable<E> entries) {
  entries.forEach((entry) => _insertAfter(_previous, entry));
}