deleteUserEmail method
- UserEmail email, {
- UserPassword? password,
- 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,
);
}