removeAt method

void removeAt(
  1. int index
)

Removes the item at the specified index.

Implementation

void removeAt(int index) {
  _helper.removeAt(index);
}