ReportResult constructor

ReportResult({
  1. Row? averages,
  2. Date? endDate,
  3. List<Header>? headers,
  4. List<Row>? rows,
  5. Date? startDate,
  6. String? totalMatchedRows,
  7. Row? totals,
  8. List<String>? warnings,
})

Implementation

ReportResult({
  this.averages,
  this.endDate,
  this.headers,
  this.rows,
  this.startDate,
  this.totalMatchedRows,
  this.totals,
  this.warnings,
});