toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dailySchedule = this.dailySchedule;
  final enabled = this.enabled;
  final monthlySchedule = this.monthlySchedule;
  final nextRun = this.nextRun;
  final refreshScope = this.refreshScope;
  final weeklySchedule = this.weeklySchedule;
  return {
    'dailySchedule': ?dailySchedule,
    'enabled': ?enabled,
    'monthlySchedule': ?monthlySchedule,
    'nextRun': ?nextRun,
    'refreshScope': ?refreshScope,
    'weeklySchedule': ?weeklySchedule,
  };
}