reserveSigningKey method
Reserve a repo signing key, for use with account creation. Necessary so that a DID PLC update operation can be constructed during an account migraiton. Public and does not require auth; implemented by PDS. NOTE: this endpoint may change when full account migration is implemented.
Implementation
Future<XRPCResponse<ServerReserveSigningKeyOutput>> reserveSigningKey({
String? did,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoServerReserveSigningKey(
did: did,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);