clear 方法

void clear()
继承

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

实现

void clear() {
  throw new UnsupportedError("Cannot clear an unmodifiable list");
}