removeAt method

T removeAt(
  1. int index
)

Removes by index.

Implementation

T removeAt(int index) {
  return _items.removeAt(index);
}