HttpConnectionOptions constructor

HttpConnectionOptions({
  1. BaseClient? client,
  2. dynamic transport,
  3. Logging? logging,
  4. AccessTokenFactory? accessTokenFactory,
  5. bool logMessageContent = false,
  6. bool skipNegotiation = false,
  7. bool withCredentials = true,
})

Implementation

HttpConnectionOptions({
  this.client,
  this.transport,
  this.logging,
  this.accessTokenFactory,
  this.logMessageContent = false,
  this.skipNegotiation = false,
  this.withCredentials = true,
});