getFollowingRequests method

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

List a user's pending following requests that they're waiting for the other user's to approve.

🔒 OAuth Required ✨ Extended Info

Implementation

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