auth method

void auth()

Implementation

void auth() {
  //var github = GitHub(auth: findAuthenticationFromEnvironment());
  _github = GitHub(auth: Authentication.basic(username, apiToken));

  _repositorySlug = RepositorySlug(owner, repository);

  _repoService = RepositoriesService(_github);
}