confirmAndSend method
Sets the stage to DeleteSessionStage.confirm and invokes a sendConfirmationCode.
Implementation
Future<void> confirmAndSend() async {
stage.value = DeleteSessionStage.confirm;
if (myUser.value?.emails.confirmed.isNotEmpty == true) {
await sendConfirmationCode();
}
}