getSuggestions method
Get a list of suggested actors. Expected use is discovery of accounts to follow during new account onboarding.
Implementation
Future<XRPCResponse<ActorGetSuggestionsOutput>> getSuggestions({
int? limit,
String? cursor,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyActorGetSuggestions(
limit: limit,
cursor: cursor,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);