comAtprotoLexiconResolveLexicon function
Resolves an atproto lexicon (NSID) to a schema.
Implementation
Future<XRPCResponse<LexiconResolveLexiconOutput>>
comAtprotoLexiconResolveLexicon({
required String nsid,
required ServiceContext $ctx,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.comAtprotoLexiconResolveLexicon,
service: $service,
headers: $headers,
parameters: {...?$unknown, 'nsid': nsid},
to: const LexiconResolveLexiconOutputConverter().fromJson,
);