addAll method
Adds all items to the list.
Implementation
void addAll(Iterable<T> items) {
final newList = List<T>.from(value)..addAll(items);
value = newList;
}
Adds all items to the list.
void addAll(Iterable<T> items) {
final newList = List<T>.from(value)..addAll(items);
value = newList;
}