WebSocketService constructor

WebSocketService({
  1. required String webSocketUrl,
  2. required String authUrl,
  3. required String channelName,
})

Implementation

WebSocketService({
  required this.webSocketUrl,
  required this.authUrl,
  required this.channelName,
}) {
  connect();
}