removeAt 方法

E removeAt(
  1. int index
)
override

从该列表中移除位置为 index 的对象。

此方法将 this 的长度减少一个,并将所有后续对象向下移动一个位置。

返回被移除的值。

index 必须在范围 0 ≤ index < length 内。列表必须是可增长的。

final parts = <String>['head', 'shoulder', 'knees', 'toes'];
final retVal = parts.removeAt(2); // knees
print(parts); // [head, shoulder, toes]

实现

E removeAt(int index) {
  E result = this[index];
  _closeGap(index, index + 1);
  return result;
}