createConfirmationCode abstract method

Future<void> createConfirmationCode({
  1. UserLogin? login,
  2. UserNum? num,
  3. UserEmail? email,
  4. UserPhone? phone,
  5. String? locale,
})

Generates and sends a new single-use ConfirmationCode for the MyUser identified by the provided login, num, email and/or phone.

Implementation

Future<void> createConfirmationCode({
  UserLogin? login,
  UserNum? num,
  UserEmail? email,
  UserPhone? phone,
  String? locale,
});