GitLab constructor

GitLab(
  1. String token, {
  2. String host = 'gitlab.com',
  3. String scheme = 'https',
  4. bool assumeUtf8 = true,
})

Implementation

GitLab(this.token,
    {this.host = 'gitlab.com', this.scheme = 'https', this.assumeUtf8 = true})
    : _httpClient = new GitLabHttpClient();