Record constructor

Record(
  1. String sourceFile, {
  2. BranchCoverage? branches,
  3. FunctionCoverage? functions,
  4. LineCoverage? lines,
})

Creates a new record with the specified source file.

Implementation

Record(this.sourceFile, {this.branches, this.functions, this.lines});