操作符 []= 方法

void operator []=(
  1. int index,
  2. String value
)
override

将列表中给定 index 位置处的值设置为 value

index 必须是列表的有效索引,这意味着 index 必须是非负数且小于 length

实现

void operator []=(int index, String value) {
  throw new UnsupportedError("Cannot assign element of immutable List.");
}