getPostThread method

Future<XRPCResponse<FeedGetPostThreadOutput>> getPostThread({
  1. required AtUri uri,
  2. int? depth,
  3. int? parentHeight,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

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