starterPackViewDescriptor top-level property

XRPCObjectDescriptor<StarterPackView> starterPackViewDescriptor
final

Implementation

final starterPackViewDescriptor = XRPCObjectDescriptor<StarterPackView>(
  nsid: 'app.bsky.graph.defs',
  defName: 'starterPackView',
  fromJson: (json) =>
      const StarterPackViewConverter().fromJson(json.cast<String, dynamic>()),
  toJson: const StarterPackViewConverter().toJson,
  matches: StarterPackView.validate,
);