TF-2871 Handle click notification to open detailed email on iOS
This commit is contained in:
@@ -1,11 +1,22 @@
|
||||
import 'package:core/presentation/state/failure.dart';
|
||||
import 'package:core/presentation/state/success.dart';
|
||||
import 'package:jmap_dart_client/jmap/core/session/session.dart';
|
||||
|
||||
class UpdateAuthenticationAccountLoading extends LoadingState {}
|
||||
class UpdatingAccountCache extends LoadingState {}
|
||||
|
||||
class UpdateAuthenticationAccountSuccess extends UIState {}
|
||||
class UpdateAccountCacheSuccess extends UIState {
|
||||
final Session session;
|
||||
final String apiUrl;
|
||||
|
||||
class UpdateAuthenticationAccountFailure extends FeatureFailure {
|
||||
UpdateAccountCacheSuccess({
|
||||
required this.session,
|
||||
required this.apiUrl});
|
||||
|
||||
UpdateAuthenticationAccountFailure(dynamic exception) : super(exception: exception);
|
||||
@override
|
||||
List<Object?> get props => [session, apiUrl];
|
||||
}
|
||||
|
||||
class UpdateAccountCacheFailure extends FeatureFailure {
|
||||
|
||||
UpdateAccountCacheFailure(dynamic exception) : super(exception: exception);
|
||||
}
|
||||
Reference in New Issue
Block a user