appBskyFeedGetFeedGenerators function

Future<XRPCResponse<FeedGetFeedGeneratorsOutput>> appBskyFeedGetFeedGenerators({
  1. required List<AtUri> feeds,
  2. required ServiceContext $ctx,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

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,
);