resendPhone method

Future<void> resendPhone()

Resends a ConfirmationCode to the unconfirmed phone of the authenticated MyUser.

Implementation

Future<void> resendPhone() async {
  try {
    await _myUserService.addUserPhone(
      phone,
      locale: L10n.chosen.value?.toString(),
    );
    resent.value = true;
    _setResendPhoneTimer(true);
  } on AddUserPhoneException catch (e) {
    code.error.value = e.toMessage();
  } catch (e) {
    MessagePopup.error(e);
    rethrow;
  }
}