toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final files = this.files;
final id = this.id;
final isReportReady = this.isReportReady;
final kind = this.kind;
final request = this.request;
final rowCount = this.rowCount;
final rows = this.rows;
final statisticsCurrencyCode = this.statisticsCurrencyCode;
final statisticsTimeZone = this.statisticsTimeZone;
return {
'files': ?files,
'id': ?id,
'isReportReady': ?isReportReady,
'kind': ?kind,
'request': ?request,
'rowCount': ?rowCount,
'rows': ?rows,
'statisticsCurrencyCode': ?statisticsCurrencyCode,
'statisticsTimeZone': ?statisticsTimeZone,
};
}