sendCloseToConnection method
sends a close message on the connection the subscription was sent on
Implementation
void sendCloseToConnection(RelayConnectionKey key, String id) {
RelayConnectivity? connectivity = globalState.relays[key];
if (connectivity != null) {
_sendCloseToRelay(connectivity, id);
}
}