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