addAllAndReturn method

List<T> addAllAndReturn(
  1. Iterable<T> t
)

Implementation

List<T> addAllAndReturn(Iterable<T> t) => <T>[...this, ...t];