removeLast 方法

E removeLast()
继承

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

实现

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