createAccountRequest method
Starts the procedure for creating an account by sending an email with a verification code.
Implementation
_i2.Future<bool> createAccountRequest(
String userName,
String email,
String password,
) =>
caller.callServerEndpoint<bool>(
'serverpod_auth.email',
'createAccountRequest',
{
'userName': userName,
'email': email,
'password': password,
},
);