getPopularFeedGenerators method
Implementation
Future<core.XRPCResponse<FeedGenerators>> getPopularFeedGenerators({
int? limit,
String? cursor,
String? query,
Map<String, String>? headers,
}) async =>
await _ctx.get(
ns.appBskyUnspeccedGetPopularFeedGenerators,
headers: headers,
parameters: {
'limit': limit,
'cursor': cursor,
'query': query,
},
to: FeedGenerators.fromJson,
);