getSuggestionsSkeleton method

Future<XRPCResponse<UnspeccedGetSuggestionsSkeletonOutput>> getSuggestionsSkeleton({
  1. String? viewer,
  2. int? limit,
  3. String? cursor,
  4. String? relativeToDid,
  5. String? $service,
  6. Map<String, String>? $headers,
  7. Map<String, String>? $unknown,
})

Get a skeleton of suggested actors. Intended to be called and then hydrated through app.bsky.actor.getSuggestions

Implementation

Future<XRPCResponse<UnspeccedGetSuggestionsSkeletonOutput>>
getSuggestionsSkeleton({
  String? viewer,
  int? limit,
  String? cursor,
  String? relativeToDid,
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyUnspeccedGetSuggestionsSkeleton(
  viewer: viewer,
  limit: limit,
  cursor: cursor,
  relativeToDid: relativeToDid,
  $ctx: ctx,
  $service: $service,
  $headers: $headers,
  $unknown: $unknown,
);