createAccount method

Future<XRPCResponse<ServerCreateAccountOutput>> createAccount({
  1. String? email,
  2. required String handle,
  3. String? did,
  4. String? inviteCode,
  5. String? verificationCode,
  6. String? verificationPhone,
  7. String? password,
  8. String? recoveryKey,
  9. Map<String, dynamic>? plcOp,
  10. Map<String, String>? $headers,
  11. Map<String, String>? $unknown,
})

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,
);