removeAt 抽象方法

E removeAt(
  1. int index
)

从列表中移除位置为 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);