getPostThread method
Get posts in a thread. Does not require auth, but additional metadata and filtering will be applied for authed requests.
Implementation
Future<XRPCResponse<FeedGetPostThreadOutput>> getPostThread({
required AtUri uri,
int? depth,
int? parentHeight,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyFeedGetPostThread(
uri: uri,
depth: depth,
parentHeight: parentHeight,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);