signIn abstract method

Future<Credentials> signIn({
  1. UserLogin? login,
  2. UserNum? num,
  3. UserEmail? email,
  4. UserPhone? phone,
  5. UserPassword? password,
  6. 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,
});