insertAll 方法

void insertAll(
  1. int index,
  2. Iterable<E> iterable
)
override

在当前列表的 index 位置插入 iterable 中所有对象。

这将增加列表的长度,其增加量为 iterable 的长度,并将所有后续对象移向列表的末尾。

列表必须是可增长的。 index 的值必须是非负数,且不大于 length

final numbers = <int>[1, 2, 3, 4];
final insertItems = [10, 11];
numbers.insertAll(2, insertItems);
print(numbers); // [1, 2, 10, 11, 3, 4]

实现

void insertAll(int index, Iterable<E> iterable) {
  throw new UnsupportedError("Cannot add to immutable List.");
}