TF-80 Move multiple email to mailbox from thread view

This commit is contained in:
dab246
2021-09-21 12:52:27 +07:00
committed by Dat H. Pham
parent 24e52dc6a4
commit a12efc8d2b
43 changed files with 1007 additions and 443 deletions
+3 -1
View File
@@ -23,6 +23,7 @@ class PresentationMailbox with EquatableMixin {
final MailboxRights? myRights;
final IsSubscribed? isSubscribed;
final SelectMode selectMode;
final String? mailboxPath;
PresentationMailbox(
this.id,
@@ -37,7 +38,8 @@ class PresentationMailbox with EquatableMixin {
this.unreadThreads,
this.myRights,
this.isSubscribed,
this.selectMode = SelectMode.INACTIVE
this.selectMode = SelectMode.INACTIVE,
this.mailboxPath,
}
);