closeTransport method

Future<void> closeTransport(
  1. String url
)

Closes every connection towards url and forgets them

Implementation

Future<void> closeTransport(String url) async {
  await Future.wait(_connectionKeysForRelay(url).map(closeConnection));
}