nc-photos/lib/session_storage.dart

14 lines
307 B
Dart
Raw Normal View History

2021-04-21 16:17:18 +02:00
/// 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._();
}