TF-1708 Update props properties for all state object in interactor
(cherry picked from commit 2a5441c2ef4facf28e7e6e1678e89601d72259be)
This commit is contained in:
@@ -3,13 +3,7 @@ import 'package:core/presentation/state/failure.dart';
|
||||
import 'package:core/presentation/state/success.dart';
|
||||
import 'package:model/email/presentation_email.dart';
|
||||
|
||||
class RefreshingChangeSearchEmailState extends UIState {
|
||||
|
||||
RefreshingChangeSearchEmailState();
|
||||
|
||||
@override
|
||||
List<Object> get props => [];
|
||||
}
|
||||
class RefreshingChangeSearchEmailState extends UIState {}
|
||||
|
||||
class RefreshChangesSearchEmailSuccess extends UIState {
|
||||
final List<PresentationEmail> emailList;
|
||||
@@ -21,10 +15,6 @@ class RefreshChangesSearchEmailSuccess extends UIState {
|
||||
}
|
||||
|
||||
class RefreshChangesSearchEmailFailure extends FeatureFailure {
|
||||
final dynamic exception;
|
||||
|
||||
RefreshChangesSearchEmailFailure(this.exception);
|
||||
|
||||
@override
|
||||
List<Object> get props => [exception];
|
||||
RefreshChangesSearchEmailFailure(dynamic exception) : super(exception: exception);
|
||||
}
|
||||
Reference in New Issue
Block a user