appBskyUnspeccedGetSuggestedUsersSkeleton function
Future<XRPCResponse<UnspeccedGetSuggestedUsersSkeletonOutput> >
appBskyUnspeccedGetSuggestedUsersSkeleton({})
Get a skeleton of suggested users. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsers
Implementation
Future<XRPCResponse<UnspeccedGetSuggestedUsersSkeletonOutput>>
appBskyUnspeccedGetSuggestedUsersSkeleton({
String? viewer,
String? category,
int? limit,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyUnspeccedGetSuggestedUsersSkeleton,
headers: $headers,
parameters: {
...?$unknown,
if (viewer != null) 'viewer': viewer,
if (category != null) 'category': category,
if (limit != null) 'limit': limit,
},
to: const UnspeccedGetSuggestedUsersSkeletonOutputConverter().fromJson,
);