comAtprotoIdentityResolveDid function
Resolves DID to DID document. Does not bi-directionally verify handle.
Implementation
Future<XRPCResponse<IdentityResolveDidOutput>> comAtprotoIdentityResolveDid({
required String did,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.comAtprotoIdentityResolveDid,
headers: $headers,
parameters: {...?$unknown, 'did': did},
to: const IdentityResolveDidOutputConverter().fromJson,
);