getPosts method
Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.
Implementation
Future<XRPCResponse<FeedGetPostsOutput>> getPosts({
required List<AtUri> uris,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyFeedGetPosts(
uris: uris,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);