Socket constructor
Socket(})
Implementation
Socket(
bool secure,
String host,
int port,
String path,
String key, {
this.clientType = 'websocket',
this.pingInterval = 5000,
}) : _baseWebSocketUrl = '${secure ? 'wss://' : 'ws://'}$host:$port${path}peerjs?key=$key',
_baseSocketioUrl = '${secure ? 'wss://' : 'ws://'}$host:$port',
_baseSocketioQueryParams = {'key': key};