getModuleLogs method

List<LogEntry> getModuleLogs(
  1. String moduleId
)

Get logs filtered by module

Implementation

List<LogEntry> getModuleLogs(String moduleId) {
  return _logs.where((log) => log.moduleId == moduleId).toList();
}