totalFiles function
Implementation
int totalFiles(Iterable<LintFileReport> records) =>
    records.map((record) => record.path).toSet().length;int totalFiles(Iterable<LintFileReport> records) =>
    records.map((record) => record.path).toSet().length;