SimpleWebSocket constructor

SimpleWebSocket(
  1. String _domain,
  2. Map<String, dynamic> _queryParams
)

Constructs a SimpleWebSocket instance with the specified domain and query parameters.

The domain parameter represents the domain or host address of the WebSocket server. The queryParams parameter contains additional query parameters to be included in the WebSocket URL.

Implementation

SimpleWebSocket(this._domain, this._queryParams);