removeEmail method
Removes an email address from the list and persists the change.
Implementation
void removeEmail(String email) {
if (!_sendEmails.contains(email)) return;
if (_selectedSendEmail == email) {
setSelectedEmail(null);
}
_sendEmails.remove(email);
_saveSendEmails();
}