toJson method

Map<String, dynamic> toJson()

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,
  };
}