getTimeline method
Get a view of the requesting account's home timeline. This is expected to be some form of reverse-chronological feed.
Implementation
Future<XRPCResponse<FeedGetTimelineOutput>> getTimeline({
String? algorithm,
int? limit,
String? cursor,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyFeedGetTimeline(
algorithm: algorithm,
limit: limit,
cursor: cursor,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);