replyRefDescriptor top-level property
Implementation
final replyRefDescriptor = XRPCObjectDescriptor<ReplyRef>(
nsid: 'app.bsky.feed.post',
defName: 'replyRef',
fromJson: (json) =>
const ReplyRefConverter().fromJson(json.cast<String, dynamic>()),
toJson: const ReplyRefConverter().toJson,
matches: ReplyRef.validate,
);