ReplyRef constructor
- @JsonSerializable(includeIfNull: false)
- @Default('app.bsky.feed.defs#replyRef') String $type,
- @UReplyRefRootConverter() required UReplyRefRoot root,
- @UReplyRefParentConverter() required UReplyRefParent parent,
- @ProfileViewBasicConverter() ProfileViewBasic? grandparentAuthor,
- Map<
String, dynamic> ? $unknown,
Implementation
@JsonSerializable(includeIfNull: false)
const factory ReplyRef({
@Default('app.bsky.feed.defs#replyRef') String $type,
@UReplyRefRootConverter() required UReplyRefRoot root,
@UReplyRefParentConverter() required UReplyRefParent parent,
/// When parent is a reply to another post, this is the author of that post.
@ProfileViewBasicConverter() ProfileViewBasic? grandparentAuthor,
Map<String, dynamic>? $unknown,
}) = _ReplyRef;