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