removeReport method

Future<Response> removeReport({
  1. required dynamic reportId,
})

Implementation

Future<http.Response> removeReport({required reportId}) {
  return delete(Uri.parse('$apiURL/reports/remove?id=$reportId'), headers: {
    "token":
        "cnejwi8c9wehnd8fchni2x239jxexnjx2n23i8xn3oifr0cwd32fjnrf453vreve"
  });
}