comAtprotoIdentityResolveIdentity function
Resolves an identity (DID or Handle) to a full identity (DID document and verified handle).
Implementation
Future<XRPCResponse<IdentityInfo>> comAtprotoIdentityResolveIdentity({
required String identifier,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.comAtprotoIdentityResolveIdentity,
headers: $headers,
parameters: {...?$unknown, 'identifier': identifier},
to: const IdentityInfoConverter().fromJson,
);