createAccount method
Create an account. Implemented by PDS.
Implementation
Future<XRPCResponse<ServerCreateAccountOutput>> createAccount({
String? email,
required String handle,
String? did,
String? inviteCode,
String? verificationCode,
String? verificationPhone,
String? password,
String? recoveryKey,
Map<String, dynamic>? plcOp,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoServerCreateAccount(
email: email,
handle: handle,
did: did,
inviteCode: inviteCode,
verificationCode: verificationCode,
verificationPhone: verificationPhone,
password: password,
recoveryKey: recoveryKey,
plcOp: plcOp,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);