NegotiateAuthClient constructor

NegotiateAuthClient(
  1. String _username,
  2. String _password, {
  3. Client? inner,
})

Creates a client wrapping inner that uses Basic HTTP auth.

Constructs a new BasicAuthClient which will use the provided username and password for all subsequent requests.

Implementation

NegotiateAuthClient(this._username, this._password, {http.Client? inner})
    : _inner = inner ?? http.Client();