将列表中给定 index 位置的值设置为 value。
index
value
该 index 必须是该列表的有效索引,这意味着 index 必须是非负数并且小于 length。
void operator []=(int index, File value) { throw new UnsupportedError("Cannot assign element of immutable List."); }