TF-2311 Remove session page view
(cherry picked from commit 557d67b816c91076d8cafc9aa680e62d5b012f5b)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
import 'package:hive/hive.dart';
|
||||
import 'package:tmail_ui_user/features/caching/utils/caching_constants.dart';
|
||||
|
||||
part 'session_hive_obj.g.dart';
|
||||
|
||||
@HiveType(typeId: CachingConstants.SESSION_HIVE_CACHE_ID)
|
||||
class SessionHiveObj extends HiveObject with EquatableMixin {
|
||||
|
||||
static const String keyValue = 'session';
|
||||
|
||||
@HiveField(0)
|
||||
final String value;
|
||||
|
||||
SessionHiveObj({
|
||||
required this.value
|
||||
});
|
||||
|
||||
@override
|
||||
List<Object?> get props => [value];
|
||||
}
|
||||
Reference in New Issue
Block a user