remove method

void remove(
  1. int index
)

Implementation

void remove(int index) {
  _list.removeAt(index);
}