draftEmbedLocalRefDescriptor top-level property

XRPCObjectDescriptor<DraftEmbedLocalRef> draftEmbedLocalRefDescriptor
final

Implementation

final draftEmbedLocalRefDescriptor = XRPCObjectDescriptor<DraftEmbedLocalRef>(
  nsid: 'app.bsky.draft.defs',
  defName: 'draftEmbedLocalRef',
  fromJson: (json) => const DraftEmbedLocalRefConverter().fromJson(
    json.cast<String, dynamic>(),
  ),
  toJson: const DraftEmbedLocalRefConverter().toJson,
  matches: DraftEmbedLocalRef.validate,
);