mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 01:06:21 +01:00
14 lines
307 B
Dart
14 lines
307 B
Dart
|
/// Hold non-persisted global variables
|
||
|
class SessionStorage {
|
||
|
factory SessionStorage() {
|
||
|
return _inst;
|
||
|
}
|
||
|
|
||
|
SessionStorage._();
|
||
|
|
||
|
/// Whether the range select notification has been shown to user
|
||
|
bool hasShowRangeSelectNotification = false;
|
||
|
|
||
|
static SessionStorage _inst = SessionStorage._();
|
||
|
}
|