deleteReviewComment method

Future<void> deleteReviewComment({
  1. required String repo,
  2. required int commentId,
})

Implementation

Future<void> deleteReviewComment({
  required String repo,
  required int commentId,
}) async =>
    _client.deleteRequest(
      path: 'repos/$repo/pulls/comments/$commentId',
    );