HttpOptionalConfig constructor

HttpOptionalConfig({
  1. String? baseURL,
  2. Map<String, String>? headers,
  3. Duration? timeout,
  4. CachePolicy? cachePolicy,
  5. bool? logURL,
  6. bool? logRequestHeader,
  7. bool? logRespondHeader,
  8. bool? logRespondBody,
  9. bool? sendDebugId,
  10. bool? enableAuthLock,
})

Implementation

HttpOptionalConfig({
  this.baseURL,
  this.headers,
  this.timeout,
  this.cachePolicy,
  this.logURL,
  this.logRequestHeader,
  this.logRespondHeader,
  this.logRespondBody,
  this.sendDebugId,
  this.enableAuthLock,
});