setSelectedEmail method
Sets the selected email address and persists the change.
Implementation
void setSelectedEmail(String? email) {
if (_sendEmails.contains(email)) {
_selectedSendEmail = email;
} else {
_selectedSendEmail = null;
}
saveSelectedEmail();
}