CCSocketLogging constructor

CCSocketLogging({
  1. required bool logEnabled,
  2. dynamic onConnection(
    1. String
    )?,
  3. dynamic onReconnection(
    1. String
    )?,
  4. dynamic onRequest(
    1. String
    )?,
  5. dynamic onResponse(
    1. String
    )?,
  6. dynamic onClosed(
    1. String
    )?,
  7. dynamic onError(
    1. String
    )?,
})

Implementation

CCSocketLogging({
  required this.logEnabled,
  this.onConnection,
  this.onReconnection,
  this.onRequest,
  this.onResponse,
  this.onClosed,
  this.onError,
});