添加数组 并返回 新数组
List<T> addAllT(List<T> iterable, {bool isAdd = true}) { if (isAdd) addAll(iterable); return this; }