signUpWithPassword method
Implementation
Future<PasswordSignInResponse> signUpWithPassword(
PasswordSignInRequest request,
) async =>
PasswordSignInResponse.fromJson(
await _post(
_buildUri('accounts:signUp'),
request.toJson(),
),
);