signUp abstract method

Future<Credentials> signUp({
  1. UserPassword? password,
  2. UserLogin? login,
})

Creates a new MyUser having only UserId and UserNum fields, and creates a new Session for this MyUser.

Once the created Session expires, the created MyUser looses access, if he doesn't re-sign in within that period of time.

Implementation

Future<Credentials> signUp({UserPassword? password, UserLogin? login});