ThreadViewPost constructor
Implementation
@JsonSerializable(includeIfNull: false)
const factory ThreadViewPost({
/// The unique namespace for this lex object.
///
/// `app.bsky.feed.defs#threadViewPost`
@Default(appBskyFeedDefsThreadViewPost)
@JsonKey(name: r'$type')
String $type,
@PostViewConverter() required PostView post,
@UThreadViewPostParentConverter() UThreadViewPostParent? parent,
@UThreadViewPostReplyConverter() List<UThreadViewPostReply>? replies,
/// Contains unknown objects not defined in Lexicon.
@JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _ThreadViewPost;