deleteComment method

Future deleteComment(
  1. int documentId,
  2. int commentId
)

Implementation

Future deleteComment(int documentId, int commentId) {
  return dio.delete('/comments/$documentId/$commentId');
}