updateAccountHandle method
Administrative action to update an account's handle.
Implementation
Future<XRPCResponse<EmptyData>> updateAccountHandle({
required String did,
required String handle,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoAdminUpdateAccountHandle(
did: did,
handle: handle,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);