Total number of sessions.
static Future<int> totalSessions() async { final box = await _openBox(); return box.toMap().keys .where((k) => k is String && !k.startsWith('_')) .length; }