deleteUserPhone method
- UserPhone phone, {
- UserPassword? password,
- ConfirmationCode? confirmation,
Deletes the given phone
from MyUser.phones for the authenticated
MyUser.
Implementation
Future<void> deleteUserPhone(
UserPhone phone, {
UserPassword? password,
ConfirmationCode? confirmation,
}) async {
Log.debug(
'deleteUserPhone($phone, password: ***, confirmation: $confirmation)',
'$runtimeType',
);
await _myUserRepository.deleteUserPhone(
phone,
password: password,
confirmation: confirmation,
);
}