getSuggestions method

Future<XRPCResponse<ActorGetSuggestionsOutput>> getSuggestions({
  1. int? limit,
  2. String? cursor,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

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,
);