插入子元素 并返回 新数组
List<T> insertT(int index, T value, {bool isInsert = true}) { if (isInsert) insert(index, value); return this; }