toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final customEndDate = this.customEndDate;
final customStartDate = this.customStartDate;
final range = this.range;
return {
'customEndDate': ?customEndDate,
'customStartDate': ?customStartDate,
'range': ?range,
};
}