addAllT method

List<T> addAllT(
  1. List<T> iterable, {
  2. bool isAdd = true,
})

Adds an array and returns the new array

Implementation

List<T> addAllT(List<T> iterable, {bool isAdd = true}) {
  if (isAdd) {
    addAll(iterable);
  }
  return this;
}