toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final endTime = this.endTime;
  final frequency = this.frequency;
  final lastExecuteTime = this.lastExecuteTime;
  final monthly = this.monthly;
  final nextExecuteTime = this.nextExecuteTime;
  final startTime = this.startTime;
  final timeOfDay = this.timeOfDay;
  final timeZone = this.timeZone;
  final weekly = this.weekly;
  return {
    'endTime': ?endTime,
    'frequency': ?frequency,
    'lastExecuteTime': ?lastExecuteTime,
    'monthly': ?monthly,
    'nextExecuteTime': ?nextExecuteTime,
    'startTime': ?startTime,
    'timeOfDay': ?timeOfDay,
    'timeZone': ?timeZone,
    'weekly': ?weekly,
  };
}