toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final averages = this.averages;
final endDate = this.endDate;
final headers = this.headers;
final rows = this.rows;
final startDate = this.startDate;
final totalMatchedRows = this.totalMatchedRows;
final totals = this.totals;
final warnings = this.warnings;
return {
'averages': ?averages,
'endDate': ?endDate,
'headers': ?headers,
'rows': ?rows,
'startDate': ?startDate,
'totalMatchedRows': ?totalMatchedRows,
'totals': ?totals,
'warnings': ?warnings,
};
}