listCommentsByRepo method

Stream<IssueComment> listCommentsByRepo(
  1. RepositorySlug slug
)

Implementation

Stream<IssueComment> listCommentsByRepo(RepositorySlug slug) {
  return PaginationHelper(github).objects(
      'GET',
      '/repos/${slug.fullName}/issues/comments',
      (dynamic i) => IssueComment.fromJson(i));
}