TF-1708 Update props properties for all state object in interactor

(cherry picked from commit 2a5441c2ef4facf28e7e6e1678e89601d72259be)
This commit is contained in:
dab246
2023-07-07 13:07:53 +07:00
committed by Dat Vu
parent 24d7eee69a
commit 0583406e3b
142 changed files with 348 additions and 1092 deletions
@@ -1,4 +1,5 @@
import 'package:core/core.dart';
import 'package:core/presentation/state/failure.dart';
import 'package:core/presentation/state/success.dart';
import 'package:jmap_dart_client/jmap/mail/email/email_address.dart';
class GetAutoCompleteSuccess extends UIState {
@@ -12,10 +13,6 @@ class GetAutoCompleteSuccess extends UIState {
}
class GetAutoCompleteFailure extends FeatureFailure {
final dynamic exception;
GetAutoCompleteFailure(this.exception);
@override
List<Object?> get props => [exception];
GetAutoCompleteFailure(dynamic exception) : super(exception: exception);
}