refreshIdentity method
Request that the server re-resolve an identity (DID and handle). The server may ignore this request, or require authentication, depending on the role, implementation, and policy of the server.
Implementation
Future<XRPCResponse<IdentityInfo>> refreshIdentity({
required String identifier,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoIdentityRefreshIdentity(
identifier: identifier,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);