WebSockets constructor
Implementation
WebSockets(
String baseUrl, {
bool reconnectOnClose = true,
Duration? reconnectInterval,
}) : super(
http.BrowserClient(),
baseUrl,
reconnectOnClose: reconnectOnClose,
reconnectInterval: reconnectInterval,
);