Report constructor

Report({
  1. List<String>? averages,
  2. List<ReportHeaders>? headers,
  3. String? kind,
  4. List<List<String>>? rows,
  5. String? totalMatchedRows,
  6. List<String>? totals,
  7. List<String>? warnings,
})

Implementation

Report({
  this.averages,
  this.headers,
  this.kind,
  this.rows,
  this.totalMatchedRows,
  this.totals,
  this.warnings,
});