resolveHandle method
Resolves an atproto handle (hostname) to a DID. Does not necessarily bi-directionally verify against the the DID document.
Implementation
Future<XRPCResponse<IdentityResolveHandleOutput>> resolveHandle({
required String handle,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoIdentityResolveHandle(
handle: handle,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);