void addAll(
Iterable<E> entries
)

Add entries to the end of the linked list.

Source

/**
 * Add [entries] to the end of the linked list.
 */
void addAll(Iterable<E> entries) {
  entries.forEach((entry) => _insertAfter(_previous, entry));
}