BaseWebSocket constructor
      
      BaseWebSocket(})
     
    
    
Implementation
BaseWebSocket(
  this.url, {
  this.ping = const Duration(seconds: 5),
  this.allowSelfSigned = true,
}) {
  url = url.startsWith('https')
      ? url.replaceAll('https:', 'wss:')
      : url.replaceAll('http:', 'ws:');
}