TF-437 Handle mailbox/changes in foreground

This commit is contained in:
dab246
2022-11-30 11:34:19 +07:00
committed by Dat H. Pham
parent 045c7383e6
commit 49069a595c
5 changed files with 90 additions and 0 deletions
@@ -139,6 +139,16 @@ class RefreshChangeEmailAction extends DashBoardAction {
RefreshChangeEmailAction(this.newState);
@override
List<Object?> get props => [newState];
}
class RefreshChangeMailboxAction extends DashBoardAction {
final jmap.State? newState;
RefreshChangeMailboxAction(this.newState);
@override
List<Object?> get props => [newState];
}