removeAt method

void removeAt(
  1. int index
)

Implementation

void removeAt(int index) {
  this._items.removeAt(index);
  notifyListeners();
}