TF-1708 Update props properties for all state object in interactor
(cherry picked from commit 2a5441c2ef4facf28e7e6e1678e89601d72259be)
This commit is contained in:
@@ -16,7 +16,4 @@ class DeleteMultipleSendingEmailSuccess extends UIState {
|
||||
class DeleteMultipleSendingEmailFailure extends FeatureFailure {
|
||||
|
||||
DeleteMultipleSendingEmailFailure(dynamic exception) : super(exception: exception);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [exception];
|
||||
}
|
||||
@@ -6,8 +6,6 @@ class DeleteSendingEmailLoading extends UIState {}
|
||||
class DeleteSendingEmailSuccess extends UIState {}
|
||||
|
||||
class DeleteSendingEmailFailure extends FeatureFailure {
|
||||
DeleteSendingEmailFailure(dynamic exception) : super(exception: exception);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [exception];
|
||||
DeleteSendingEmailFailure(dynamic exception) : super(exception: exception);
|
||||
}
|
||||
@@ -18,7 +18,4 @@ class GetAllSendingEmailSuccess extends UIState {
|
||||
class GetAllSendingEmailFailure extends FeatureFailure {
|
||||
|
||||
GetAllSendingEmailFailure(dynamic exception) : super(exception: exception);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [exception];
|
||||
}
|
||||
@@ -34,7 +34,4 @@ class GetStoredSendingEmailSuccess extends UIState {
|
||||
class GetStoredSendingEmailFailure extends FeatureFailure {
|
||||
|
||||
GetStoredSendingEmailFailure(dynamic exception) : super(exception: exception);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [exception];
|
||||
}
|
||||
@@ -16,8 +16,6 @@ class StoreSendingEmailSuccess extends UIState {
|
||||
}
|
||||
|
||||
class StoreSendingEmailFailure extends FeatureFailure {
|
||||
StoreSendingEmailFailure(dynamic exception) : super(exception: exception);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [exception];
|
||||
StoreSendingEmailFailure(dynamic exception) : super(exception: exception);
|
||||
}
|
||||
@@ -26,15 +26,9 @@ class UpdateMultipleSendingEmailHasSomeSuccess extends UIState {
|
||||
class UpdateMultipleSendingEmailAllFailure extends FeatureFailure {
|
||||
|
||||
UpdateMultipleSendingEmailAllFailure(dynamic exception) : super(exception: exception);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [exception];
|
||||
}
|
||||
|
||||
class UpdateMultipleSendingEmailFailure extends FeatureFailure {
|
||||
|
||||
UpdateMultipleSendingEmailFailure(dynamic exception) : super(exception: exception);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [exception];
|
||||
}
|
||||
@@ -17,7 +17,4 @@ class UpdateSendingEmailSuccess extends UIState {
|
||||
class UpdateSendingEmailFailure extends FeatureFailure {
|
||||
|
||||
UpdateSendingEmailFailure(dynamic exception) : super(exception: exception);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [exception];
|
||||
}
|
||||
Reference in New Issue
Block a user