linksDescriptor top-level property

XRPCObjectDescriptor<Links> linksDescriptor
final

Implementation

final linksDescriptor = XRPCObjectDescriptor<Links>(
  nsid: 'com.atproto.server.describeServer',
  defName: 'links',
  fromJson: (json) =>
      const LinksConverter().fromJson(json.cast<String, dynamic>()),
  toJson: const LinksConverter().toJson,
  matches: Links.validate,
);