TF-78 Update state email and count unread current mailbox when mark as read & unread multiple selected email
This commit is contained in:
@@ -14,10 +14,10 @@ extension PresentationEmailExtension on PresentationEmail {
|
||||
return '';
|
||||
}
|
||||
|
||||
PresentationEmail markAsReadPresentationEmail({required bool unRead}) {
|
||||
PresentationEmail markAsReadPresentationEmail({required bool isUnread}) {
|
||||
var newKeyWord = keywords;
|
||||
|
||||
if (unRead) {
|
||||
if (isUnread) {
|
||||
newKeyWord?.removeWhere((key, value) => key == KeyWordIdentifier.emailSeen);
|
||||
} else {
|
||||
if (newKeyWord == null) {
|
||||
|
||||
Reference in New Issue
Block a user