removeAt method

void removeAt(
  1. int index
)

Implementation

void removeAt(int index) {
  if (index >= 0 && index < _listeners.length) {
    _listeners.removeAt(index);
  }
}