addAll method

void addAll(
  1. Iterable<T> items
)

addAll method.

Implementation

void addAll(Iterable<T> items) {
  /// if method.
  if (items.isEmpty) {
    return; // Early exit optimization
  }
  throwIfDisposed('addAll');
  value = [...value, ...items];
}