TF-437 Delete state change of mailbox after invoke refresh change in background/terminated
This commit is contained in:
+22
@@ -0,0 +1,22 @@
|
||||
|
||||
import 'package:core/presentation/state/failure.dart';
|
||||
import 'package:core/presentation/state/success.dart';
|
||||
|
||||
class DeleteMailboxStateToRefreshLoading extends UIState {}
|
||||
|
||||
class DeleteMailboxStateToRefreshSuccess extends UIState {
|
||||
|
||||
DeleteMailboxStateToRefreshSuccess();
|
||||
|
||||
@override
|
||||
List<Object> get props => [];
|
||||
}
|
||||
|
||||
class DeleteMailboxStateToRefreshFailure extends FeatureFailure {
|
||||
final dynamic exception;
|
||||
|
||||
DeleteMailboxStateToRefreshFailure(this.exception);
|
||||
|
||||
@override
|
||||
List<Object> get props => [exception];
|
||||
}
|
||||
Reference in New Issue
Block a user