appBskyFeedGetSuggestedFeeds function
Get a list of suggested feeds (feed generators) for the requesting account.
Implementation
Future<XRPCResponse<FeedGetSuggestedFeedsOutput>> appBskyFeedGetSuggestedFeeds({
int? limit,
String? cursor,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyFeedGetSuggestedFeeds,
headers: $headers,
parameters: {
...?$unknown,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
},
to: const FeedGetSuggestedFeedsOutputConverter().fromJson,
);