WebSocketService constructor

WebSocketService({
  1. required String url,
  2. String? authToken,
  3. Duration reconnectDelay = const Duration(seconds: 5),
  4. int maxReconnectAttempts = 5,
})

Implementation

WebSocketService({
  required this.url,
  this.authToken,
  this.reconnectDelay = const Duration(seconds: 5),
  this.maxReconnectAttempts = 5,
});