add 方法

void add(
  1. E value
)
继承

不可修改的列表不支持此操作。

实现

void add(E value) {
  throw new UnsupportedError("Cannot add to an unmodifiable list");
}