getListFeed method
Get a feed of recent posts from a list (posts and reposts from any actors on the list). Does not require auth.
Implementation
Future<XRPCResponse<FeedGetListFeedOutput>> getListFeed({
required AtUri list,
int? limit,
String? cursor,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyFeedGetListFeed(
list: list,
limit: limit,
cursor: cursor,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);