removeServer method

void removeServer(
  1. String host,
  2. int port
)

Removes a STUN server from the pool

Implementation

void removeServer(String host, int port) {
  _servers.removeWhere((s) => s.host == host && s.port == port);
}