insertAllT method

List<T> insertAllT(
  1. int index,
  2. List<T> iterable, {
  3. bool isInsert = true,
})

Insert the array and return the new array

Implementation

List<T> insertAllT(int index, List<T> iterable, {bool isInsert = true}) {
  if (isInsert) {
    insertAll(index, iterable);
  }
  return this;
}