totalFiles function

int totalFiles(
  1. Iterable<LintFileReport> records
)

Implementation

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