listComments method

Stream<GistComment> listComments(
  1. String gistId
)

Implementation

Stream<GistComment> listComments(String gistId) {
  return PaginationHelper(github).objects('GET', '/gists/$gistId/comments',
      (dynamic i) => GistComment.fromJson(i));
}