disable method
Disconnects from all sockets without restarting them
Implementation
void disable() {
for (final socket in sockets) {
socket.disable();
}
notifyListeners();
}
Disconnects from all sockets without restarting them
void disable() {
for (final socket in sockets) {
socket.disable();
}
notifyListeners();
}