CCRestLogging constructor

CCRestLogging({
  1. required bool logEnabled,
  2. dynamic onRequest(
    1. String
    )?,
  3. dynamic onResponse(
    1. String
    )?,
  4. dynamic onError(
    1. String
    )?,
})

Implementation

CCRestLogging({
  required this.logEnabled,
  this.onRequest,
  this.onResponse,
  this.onError,
});