appBskyFeedGetFeedGenerator function

Future<XRPCResponse<FeedGetFeedGeneratorOutput>> appBskyFeedGetFeedGenerator({
  1. required AtUri feed,
  2. required ServiceContext $ctx,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Get information about a feed generator. Implemented by AppView.

Implementation

Future<XRPCResponse<FeedGetFeedGeneratorOutput>> appBskyFeedGetFeedGenerator({
  required AtUri feed,
  required ServiceContext $ctx,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.get(
  ns.appBskyFeedGetFeedGenerator,
  headers: $headers,
  parameters: {...?$unknown, 'feed': feed.toString()},
  to: const FeedGetFeedGeneratorOutputConverter().fromJson,
);