Future<List<dynamic>> getAllLogs() async { final txn = _db.transaction(_storeName, 'readwrite'); final store = txn.objectStore(_storeName); return store.getAll() as List<LogEntry>; }