toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (backupWindow != null) 'backupWindow': backupWindow!,
  if (daysOfMonth != null) 'daysOfMonth': daysOfMonth!,
  if (daysOfWeek != null) 'daysOfWeek': daysOfWeek!,
  if (hourlyFrequency != null) 'hourlyFrequency': hourlyFrequency!,
  if (months != null) 'months': months!,
  if (recurrenceType != null) 'recurrenceType': recurrenceType!,
  if (timeZone != null) 'timeZone': timeZone!,
  if (weekDayOfMonth != null) 'weekDayOfMonth': weekDayOfMonth!,
};