FeedGetPostThreadInput constructor
- @JsonSerializable(includeIfNull: false)
const
FeedGetPostThreadInput(
{ - @AtUriConverter() required AtUri uri,
- @Default(6) int depth,
- @Default(80) int parentHeight,
- Map<String, dynamic>? $unknown,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory FeedGetPostThreadInput({
/// Reference (AT-URI) to post record.
@AtUriConverter() required AtUri uri,
/// 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,
Map<String, dynamic>? $unknown,
}) = _FeedGetPostThreadInput;