listCommentsByRepo method

Stream<IssueComment> listCommentsByRepo(
  1. RepositorySlug slug
)

Implementation

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