resolveDid method

Future<XRPCResponse<IdentityResolveDidOutput>> resolveDid({
  1. required String did,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Resolves DID to DID document. Does not bi-directionally verify handle.

Implementation

Future<XRPCResponse<IdentityResolveDidOutput>> resolveDid({
  required String did,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoIdentityResolveDid(
  did: did,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);