sendCloseToRelay method
sends a close message to a relay
Implementation
void sendCloseToRelay(String url, String id) {
RelayConnectivity? connectivity = globalState.relays[url];
if (connectivity != null) {
_sendCloseToRelay(connectivity, id);
}
}