Client constructor

Client(String url)

Creates a client for the specified URL.

Implementation

Client(String url) {
  this._client = new http.Client();
  this._url = url;
  this._authentication = null;
}