sendConfirmationCode method
Sends a ConfirmationCode to the email.
Implementation
Future<void> sendConfirmationCode() async {
try {
await _authService.createConfirmationCode(
email: email,
locale: L10n.chosen.value?.toString(),
);
resent.value = true;
_setResendEmailTimer(true);
} catch (e) {
MessagePopup.error(e);
rethrow;
}
}