bskyAppProgressGuideDescriptor top-level property

XRPCObjectDescriptor<BskyAppProgressGuide> bskyAppProgressGuideDescriptor
final

Implementation

final bskyAppProgressGuideDescriptor =
    XRPCObjectDescriptor<BskyAppProgressGuide>(
      nsid: 'app.bsky.actor.defs',
      defName: 'bskyAppProgressGuide',
      fromJson: (json) => const BskyAppProgressGuideConverter().fromJson(
        json.cast<String, dynamic>(),
      ),
      toJson: const BskyAppProgressGuideConverter().toJson,
      matches: BskyAppProgressGuide.validate,
    );