TF-2871 Block notification on folders Sent, Outbox, Drafts, Spam and Trash

This commit is contained in:
dab246
2024-07-16 09:40:12 +07:00
committed by Dat H. Pham
parent 501d4d38d9
commit 7b5c0d5a75
20 changed files with 253 additions and 81 deletions
@@ -17,6 +17,15 @@ class UpdateAccountCacheSuccess extends UIState {
}
class UpdateAccountCacheFailure extends FeatureFailure {
final Session session;
final String apiUrl;
UpdateAccountCacheFailure(dynamic exception) : super(exception: exception);
UpdateAccountCacheFailure({
required this.session,
required this.apiUrl,
dynamic exception,
}) : super(exception: exception);
@override
List<Object?> get props => [session, apiUrl, ...super.props];
}