removeLast 方法
重写
从列表中移除并返回最后一个对象。
列表必须是可增长的且不为空。
final parts = <String>['head', 'shoulder', 'knees', 'toes'];
final retVal = parts.removeLast(); // toes
print(parts); // [head, shoulder, knees]
实现
E removeLast() {
if (length == 0) {
throw IterableElementError.noElement();
}
E result = this[length - 1];
length--;
return result;
}