removeConnectionListener method Null safety
- ChatConnectionListener listener
Removes the chat server connection listener.
Param listener The chat server connection listener to be removed.
Implementation
void removeConnectionListener(ChatConnectionListener listener) {
if (_connectionListeners.contains(listener)) {
_connectionListeners.remove(listener);
}
}