TF-1899 Implement store session to hive
(cherry picked from commit e42b61f67a8352c9d9bc30207031989785295b65)
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import 'package:core/presentation/state/failure.dart';
|
||||
import 'package:core/presentation/state/success.dart';
|
||||
|
||||
class StoreSessionLoading extends UIState {}
|
||||
|
||||
class StoreSessionSuccess extends UIState {}
|
||||
|
||||
class StoreSessionFailure extends FeatureFailure {
|
||||
|
||||
StoreSessionFailure(dynamic exception) : super(exception: exception);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [exception];
|
||||
}
|
||||
Reference in New Issue
Block a user