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,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyActorGetSuggestions(
limit: limit,
cursor: cursor,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);