validateConfirmationCode method
- UserLogin? login,
- UserNum? num,
- UserEmail? email,
- UserPhone? phone,
- required ConfirmationCode code,
Validates the provided ConfirmationCode for the MyUser identified by the
provided login
, num
, email
and/or phone
without using it.
Implementation
Future<void> validateConfirmationCode({
UserLogin? login,
UserNum? num,
UserEmail? email,
UserPhone? phone,
required ConfirmationCode code,
}) async {
Log.debug(
'validateConfirmationCode(login: $login, num: $num, email: ${email?.obscured}, phone: ${phone?.obscured})',
'$runtimeType',
);
await _authRepository.validateConfirmationCode(
login: login,
num: num,
email: email,
phone: phone,
code: code,
);
}