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