signIn abstract method
- UserLogin? login,
- UserNum? num,
- UserEmail? email,
- UserPhone? phone,
- UserPassword? password,
- ConfirmationCode? code,
Creates a new Session for the MyUser identified by the provided
num/login/email/phone (exactly one of four should be specified).
Implementation
Future<Credentials> signIn({
UserLogin? login,
UserNum? num,
UserEmail? email,
UserPhone? phone,
UserPassword? password,
ConfirmationCode? code,
});