remove method

void remove(
  1. int index
)

Implementation

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