updateHandle method
Updates the current account's handle. Verifies handle validity, and updates did:plc document if necessary. Implemented by PDS, and requires auth.
https://atprotodart.com/docs/lexicons/com/atproto/identity/updateHandle
Implementation
Future<XRPCResponse<EmptyData>> updateHandle({
required String handle,
Map<String, String>? $unknown,
Map<String, String>? $headers,
PostClient? $client,
}) async =>
await _ctx.post<EmptyData>(
ns.comAtprotoIdentityUpdateHandle,
headers: $headers,
body: {
'handle': handle,
...?$unknown,
},
client: $client,
);