updateHandle method
Updates the current account's handle. Verifies handle validity, and updates did:plc document if necessary. Implemented by PDS, and requires auth.
Implementation
Future<XRPCResponse<EmptyData>> updateHandle({
required String handle,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoIdentityUpdateHandle(
handle: handle,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);