removeAt method

T removeAt(
  1. int index
)

Implementation

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