addUserEmail method

Future<void> addUserEmail(
  1. UserEmail email, {
  2. ConfirmationCode? confirmation,
  3. String? locale,
})

Adds a new email address for the authenticated MyUser.

Sets the given email address as an MyUserEmails.unconfirmed sub-field of a MyUser.emails field and sends to this address an email message with a ConfirmationCode.

Implementation

Future<void> addUserEmail(
  UserEmail email, {
  ConfirmationCode? confirmation,
  String? locale,
}) async {
  Log.debug(
    'addUserEmail($email, confirmation: $confirmation, locale: $locale)',
    '$runtimeType',
  );

  await _myUserRepository.addUserEmail(
    email,
    confirmation: confirmation,
    locale: locale,
  );
}