removeUserEmail method
- UserEmail email, {
- UserPassword? password,
- ConfirmationCode? confirmation,
Deletes the given email
from MyUser.emails of the authenticated
MyUser.
Implementation
Future<void> removeUserEmail(
UserEmail email, {
UserPassword? password,
ConfirmationCode? confirmation,
}) async {
Log.debug(
'removeUserEmail($email, password: ***, confirmation: $confirmation)',
'$runtimeType',
);
await _myUserRepository.removeUserEmail(
email,
password: password,
confirmation: confirmation,
);
}