removeReplyComment method

Future<Response> removeReplyComment({
  1. required dynamic replyId,
})

Implementation

Future<http.Response> removeReplyComment({required replyId}) {
  return delete(Uri.parse('$apiURL/reply-comments/remove?id=$replyId'),
      headers: {
        "token":
            "cnejwi8c9wehnd8fchni2x239jxexnjx2n23i8xn3oifr0cwd32fjnrf453vreve"
      });
}