getFollowerRequests method

Future<List<FollowRequest>> getFollowerRequests({
  1. bool extendedFull = false,
})

List a user's pending follow requests so they can either approve or deny them.

🔒 OAuth Required ✨ Extended Info

Implementation

Future<List<FollowRequest>> getFollowerRequests({bool extendedFull = false}) async {
  return await _manager._authenticatedGetList<FollowRequest>("users/requests/following", extendedFull: extendedFull);
}