SocketIoConnectorOptions constructor

const SocketIoConnectorOptions({
  1. required Socket client,
  2. Future<Map<String, String>> authHeaders()?,
  3. String? nameSpace,
  4. Map<String, dynamic> channelDecryption(
    1. String sharedSecret,
    2. Map data
    )?,
})

Implementation

const SocketIoConnectorOptions({
  required super.client,
  super.authHeaders,
  super.nameSpace,
  this.channelDecryption,
});