addAll method
Adds all items from items to the end of the list.
Implementation
void addAll(Iterable<T> items) => value = [...value, ...items];
Adds all items from items to the end of the list.
void addAll(Iterable<T> items) => value = [...value, ...items];