WebSocketInfo constructor

WebSocketInfo({
  1. required String socketId,
  2. required WebSocket websocket,
  3. String? activeRoom,
  4. String? previousRoom,
})

Implementation

WebSocketInfo({
  required this.socketId,
  required this.websocket,
  this.activeRoom,
  this.previousRoom,
});