getRecommendedDidCredentials method

Future<XRPCResponse<GetRecommendedDidCredentialsOutput>> getRecommendedDidCredentials({
  1. Map<String, String>? $unknown,
  2. Map<String, String>? $headers,
  3. GetClient? $client,
})

Describe the credentials that should be included in the DID doc of an account that is migrating to this service.

https://atprotodart.com/docs/lexicons/com/atproto/identity/getRecommendedDidCredentials

Implementation

Future<XRPCResponse<GetRecommendedDidCredentialsOutput>>
    getRecommendedDidCredentials({
  Map<String, String>? $unknown,
  Map<String, String>? $headers,
  GetClient? $client,
}) async =>
        await _ctx.get<GetRecommendedDidCredentialsOutput>(
          ns.comAtprotoIdentityGetRecommendedDidCredentials,
          headers: $headers,
          to: const GetRecommendedDidCredentialsOutputConverter().fromJson,
          client: $client,
        );