TF-1899 Implement store session to hive

(cherry picked from commit e42b61f67a8352c9d9bc30207031989785295b65)
This commit is contained in:
dab246
2023-06-06 22:20:35 +07:00
committed by Dat Vu
parent 44bc6b2084
commit 45aa20d314
12 changed files with 110 additions and 5 deletions
@@ -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];
}