appBskyFeedGetFeedGenerators function
Get information about a list of feed generators.
Implementation
Future<XRPCResponse<FeedGetFeedGeneratorsOutput>> appBskyFeedGetFeedGenerators({
required List<AtUri> feeds,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyFeedGetFeedGenerators,
headers: $headers,
parameters: {...?$unknown, 'feeds': feeds.map((e) => e.toString()).toList()},
to: const FeedGetFeedGeneratorsOutputConverter().fromJson,
);