contentLabelPrefDescriptor top-level property

XRPCObjectDescriptor<ContentLabelPref> contentLabelPrefDescriptor
final

Implementation

final contentLabelPrefDescriptor = XRPCObjectDescriptor<ContentLabelPref>(
  nsid: 'app.bsky.actor.defs',
  defName: 'contentLabelPref',
  fromJson: (json) =>
      const ContentLabelPrefConverter().fromJson(json.cast<String, dynamic>()),
  toJson: const ContentLabelPrefConverter().toJson,
  matches: ContentLabelPref.validate,
);