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,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoIdentityRefreshIdentity(
identifier: identifier,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);