addAll method

void addAll(
  1. Iterable<E> items
)

Add multiple items to the list.

Implementation

void addAll(Iterable<E> items) {
  emit([...val, ...items]);
}