PhoenixException constructor

PhoenixException({
  1. PhoenixSocketCloseEvent? socketClosed,
  2. PhoenixSocketErrorEvent? socketError,
  3. String? channelEvent,
})

The default constructor for this exception.

Implementation

PhoenixException({
  this.socketClosed,
  this.socketError,
  this.channelEvent,
});