deleteUserEmail method

Future<void> deleteUserEmail(
  1. UserEmail email, {
  2. UserPassword? password,
  3. ConfirmationCode? confirmation,
})

Deletes the given email from MyUser.emails of the authenticated MyUser.

Implementation

Future<void> deleteUserEmail(
  UserEmail email, {
  UserPassword? password,
  ConfirmationCode? confirmation,
}) async {
  Log.debug(
    'deleteUserEmail($email, password: ***, confirmation: $confirmation)',
    '$runtimeType',
  );

  await _myUserRepository.deleteUserEmail(
    email,
    password: password,
    confirmation: confirmation,
  );
}