validateConfirmationCode abstract 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,
});