appBskyUnspeccedGetPopularFeedGenerators function
Future<XRPCResponse<UnspeccedGetPopularFeedGeneratorsOutput> >
appBskyUnspeccedGetPopularFeedGenerators({})
An unspecced view of globally popular feed generators.
Implementation
Future<XRPCResponse<UnspeccedGetPopularFeedGeneratorsOutput>>
appBskyUnspeccedGetPopularFeedGenerators({
int? limit,
String? cursor,
String? query,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyUnspeccedGetPopularFeedGenerators,
headers: $headers,
parameters: {
...?$unknown,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
if (query != null) 'query': query,
},
to: const UnspeccedGetPopularFeedGeneratorsOutputConverter().fromJson,
);