addAll method Null safety

void addAll(
  1. Iterable<E> entries
)

Adds entries to the end of the linked list.

Implementation

void addAll(Iterable<E> entries) {
  entries.forEach(add);
}