deleteComment method

Future<void> deleteComment(
  1. int commentId
)

删除评论(自己的)
commentId - 评论ID

Implementation

Future<void> deleteComment(int commentId) async {
  await _httpClient.post<String>(
    '/v1/illust/comment/delete',
    data: FormData.fromMap(
      {
        'comment_id': commentId,
      },
    ),
  );
}