HttpConnectionOptions constructor

HttpConnectionOptions({
  1. Map<String, String>? headers,
  2. HttpClient? httpClient,
  3. Object? transport,
  4. Object? logger,
  5. String accessTokenBuilder()?,
  6. bool? logMessageContent,
  7. bool? skipNegotiation,
  8. WebSocketConstructor? webSocket,
  9. EventSourceConstructor? eventSource,
  10. bool? withCredentials,
})

Implementation

HttpConnectionOptions(
    {this.headers,
    this.httpClient,
    this.transport,
    this.logger,
    this.accessTokenBuilder,
    this.logMessageContent,
    this.skipNegotiation,
    this.webSocket,
    this.eventSource,
    this.withCredentials});