CodeCoverageReportSummary constructor

CodeCoverageReportSummary({
  1. double? branchCoveragePercentage,
  2. int? branchesCovered,
  3. int? branchesMissed,
  4. double? lineCoveragePercentage,
  5. int? linesCovered,
  6. int? linesMissed,
})

Implementation

CodeCoverageReportSummary({
  this.branchCoveragePercentage,
  this.branchesCovered,
  this.branchesMissed,
  this.lineCoveragePercentage,
  this.linesCovered,
  this.linesMissed,
});