denyFollowerRequest method

Future<void> denyFollowerRequest(
  1. int id
)

Deny a follower using the id of the request.

If the id is not found, was already approved, or was already denied, a 404 error will be returned.

id - ID of the follower request.

🔒 OAuth Required

Implementation

Future<void> denyFollowerRequest(int id) async {
  return await _manager._authenticatedDelete("users/requests/$id");
}