deleteUserPhone method

Future<void> deleteUserPhone(
  1. UserPhone phone, {
  2. UserPassword? password,
  3. 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,
  );
}