toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final aggregationType = this.aggregationType;
final dataState = this.dataState;
final dimensionFilterGroups = this.dimensionFilterGroups;
final dimensions = this.dimensions;
final endDate = this.endDate;
final rowLimit = this.rowLimit;
final searchType = this.searchType;
final startDate = this.startDate;
final startRow = this.startRow;
final type = this.type;
return {
'aggregationType': ?aggregationType,
'dataState': ?dataState,
'dimensionFilterGroups': ?dimensionFilterGroups,
'dimensions': ?dimensions,
'endDate': ?endDate,
'rowLimit': ?rowLimit,
'searchType': ?searchType,
'startDate': ?startDate,
'startRow': ?startRow,
'type': ?type,
};
}