toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dateRange = this.dateRange;
  final precedingDateRange = this.precedingDateRange;
  final report = this.report;
  final rowCount = this.rowCount;
  return {
    'dateRange': ?dateRange,
    'precedingDateRange': ?precedingDateRange,
    'report': ?report,
    'rowCount': ?rowCount,
  };
}