void setAll(int index, List<T> items) { final temp = List<T>.from(value); temp.setAll(index, items); value = temp; }