toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (dailySchedule != null) 'dailySchedule': dailySchedule!,
  if (enabled != null) 'enabled': enabled!,
  if (monthlySchedule != null) 'monthlySchedule': monthlySchedule!,
  if (nextRun != null) 'nextRun': nextRun!,
  if (refreshScope != null) 'refreshScope': refreshScope!,
  if (weeklySchedule != null) 'weeklySchedule': weeklySchedule!,
};