removeUid method
Removes the UID of the specified message.
Implementation
void removeUid(MimeMessage message) {
final uid = message.uid;
if (uid == null) {
throw InvalidArgumentException('no UID found in message');
}
remove(uid);
}
Removes the UID of the specified message.
void removeUid(MimeMessage message) {
final uid = message.uid;
if (uid == null) {
throw InvalidArgumentException('no UID found in message');
}
remove(uid);
}