Record constructor

Record({
  1. String? title,
  2. String? file,
  3. LcovFunctionDetails? functions,
  4. LcovBranchesDetails? branches,
  5. LcovLinesDetails? lines,
})

Implementation

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