appBskyActorGetSuggestions function
Get a list of suggested actors. Expected use is discovery of accounts to follow during new account onboarding.
Implementation
Future<XRPCResponse<ActorGetSuggestionsOutput>> appBskyActorGetSuggestions({
int? limit,
String? cursor,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyActorGetSuggestions,
headers: $headers,
parameters: {
...?$unknown,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
},
to: const ActorGetSuggestionsOutputConverter().fromJson,
);