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