enable method

void enable()

Enables all sockets without restarting them

Implementation

void enable() {
  for (final socket in sockets) {
    socket.enable();
  }
  notifyListeners();
}