toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final nextJobTime = this.nextJobTime;
final schedule = this.schedule;
final timeZone = this.timeZone;
return {
'nextJobTime': ?nextJobTime,
'schedule': ?schedule,
'timeZone': ?timeZone,
};
}