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