mentionRuleDescriptor top-level property

XRPCObjectDescriptor<MentionRule> mentionRuleDescriptor
final

Implementation

final mentionRuleDescriptor = XRPCObjectDescriptor<MentionRule>(
  nsid: 'app.bsky.feed.threadgate',
  defName: 'mentionRule',
  fromJson: (json) =>
      const MentionRuleConverter().fromJson(json.cast<String, dynamic>()),
  toJson: const MentionRuleConverter().toJson,
  matches: MentionRule.validate,
);