removeLast 方法

E removeLast()
继承

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

实现

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