toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dateWindow = this.dateWindow;
final spend = this.spend;
final startDate = this.startDate;
return {
'dateWindow': ?dateWindow,
'spend': ?spend,
'startDate': ?startDate,
};
}