AuthenticatedChannel constructor

AuthenticatedChannel(
  1. String host,
  2. int port,
  3. String accessToken,
  4. bool insecure, [
  5. String _sessionId()?,
])

Implementation

AuthenticatedChannel(String host, int port, this.accessToken, bool insecure, [this._sessionId])
    : super(
        host: host,
        port: port,
        transportSecure: !insecure,
      );