插入数组 并返回 新数组
List<T> insertAllT(int index, List<T> iterable, {bool isInsert = true}) { if (isInsert) insertAll(index, iterable); return this; }