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