FeedGetPostThreadInput constructor
const
FeedGetPostThreadInput({
- @AtUriConverter.new() required AtUri anchor,
- @Default.new(50) int limit,
- String? cursor,
- @Default.new(6) int depth,
- @Default.new(80) int parentHeight,
- @FeedGetPostThreadSortConverter() FeedGetPostThreadSort? sort,
- Map<
String, dynamic> ? $unknown,
Implementation
@JsonSerializable(includeIfNull: false)
const factory FeedGetPostThreadInput({
/// Reference (AT-URI) to anchor post record.
@AtUriConverter() required AtUri anchor,
@Default(50) int limit,
String? cursor,
/// How many levels of reply depth should be included in response.
@Default(6) int depth,
/// How many levels of parent (and grandparent, etc) post to include.
@Default(80) int parentHeight,
/// Sorting for the thread replies.
@FeedGetPostThreadSortConverter() FeedGetPostThreadSort? sort,
Map<String, dynamic>? $unknown,
}) = _FeedGetPostThreadInput;