listContributors method

Stream<Contributor> listContributors(
  1. RepositorySlug slug, {
  2. bool anon = false,
})

Lists the contributors of the specified repository.

API docs: https://developer.github.com/v3/repos/#list-contributors

Implementation

Stream<Contributor> listContributors(RepositorySlug slug,
    {bool anon = false}) {
  ArgumentError.checkNotNull(slug);
  ArgumentError.checkNotNull(anon);
  return PaginationHelper(github).objects<Map<String, dynamic>, Contributor>(
    'GET',
    '/repos/${slug.fullName}/contributors',
    (i) => Contributor.fromJson(i),
    params: <String, dynamic>{'anon': anon.toString()},
  );
}