addAllThen method

List<T> addAllThen(
  1. Iterable<T> value
)

Implementation

List<T> addAllThen(Iterable<T> value) {
  addAll(value);
  return this;
}