deleteReviewComment method
Delete a review comment for a pull request https://docs.github.com/en/rest/pulls/comments#delete-a-review-comment-for-a-pull-request
Implementation
Future<void> deleteReviewComment({
required String repo,
required int commentId,
}) async =>
_client.deleteRequest(
path: 'repos/$repo/pulls/comments/$commentId',
);