addAll method

void addAll(
  1. Iterable<T> items
)

Adds all items to the list.

Implementation

void addAll(Iterable<T> items) {
  final newList = List<T>.from(value)..addAll(items);
  value = newList;
}