appBskyUnspeccedGetSuggestionsSkeleton function
Future<XRPCResponse<UnspeccedGetSuggestionsSkeletonOutput> >
appBskyUnspeccedGetSuggestionsSkeleton({})
Get a skeleton of suggested actors. Intended to be called and then hydrated through app.bsky.actor.getSuggestions
Implementation
Future<XRPCResponse<UnspeccedGetSuggestionsSkeletonOutput>>
appBskyUnspeccedGetSuggestionsSkeleton({
String? viewer,
int? limit,
String? cursor,
String? relativeToDid,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyUnspeccedGetSuggestionsSkeleton,
headers: $headers,
parameters: {
...?$unknown,
if (viewer != null) 'viewer': viewer,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
if (relativeToDid != null) 'relativeToDid': relativeToDid,
},
to: const UnspeccedGetSuggestionsSkeletonOutputConverter().fromJson,
);