removeAt method

void removeAt(
  1. num i
)

Removes a value at a given index from the List.

Be careful not to call this method while iterating over the collection. @param {number} i int The index to remove.

Implementation

void removeAt(_i2.num i) {
  _i4.callMethod(
    this,
    'removeAt',
    [i],
  );
}