replyRefDescriptor top-level property

XRPCObjectDescriptor<ReplyRef> replyRefDescriptor
final

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,
);