getAllLogs method

Future<List> getAllLogs()

Implementation

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