removeAt 方法

E removeAt(
  1. int index
)
继承的

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

实现

E removeAt(int index) {
  throw new UnsupportedError("Cannot remove from an unmodifiable list");
}