addAll method

void addAll(
  1. Iterable<T> items
)

Adds all items from items to the end of the list.

Implementation

void addAll(Iterable<T> items) => value = [...value, ...items];