TF-333 Create 2 mailbox with the same name in MailboxCreatorView
This commit is contained in:
@@ -1,14 +1,15 @@
|
||||
|
||||
import 'package:equatable/equatable.dart';
|
||||
import 'package:jmap_dart_client/jmap/account_id.dart';
|
||||
import 'package:model/mailbox/presentation_mailbox.dart';
|
||||
import 'package:tmail_ui_user/features/mailbox/presentation/model/mailbox_tree.dart';
|
||||
|
||||
class MailboxCreatorArguments with EquatableMixin{
|
||||
final AccountId accountId;
|
||||
final List<PresentationMailbox> allMailboxes;
|
||||
final MailboxTree folderMailboxTree;
|
||||
final MailboxTree defaultMailboxTree;
|
||||
|
||||
MailboxCreatorArguments(this.accountId, this.allMailboxes);
|
||||
MailboxCreatorArguments(this.accountId, this.defaultMailboxTree, this.folderMailboxTree);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [accountId, allMailboxes];
|
||||
List<Object?> get props => [accountId, defaultMailboxTree, folderMailboxTree];
|
||||
}
|
||||
Reference in New Issue
Block a user