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