appBskyFeedGetFeedGenerator function

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

Get information about a feed generator. Implemented by AppView.

Implementation

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