getAllLogs method

List<FlushLogEntry> getAllLogs()

Gets all flush logs (newest first)

Implementation

List<FlushLogEntry> getAllLogs() {
  return _logs.toList().reversed.toList();
}