toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (dayOfMonth != null) 'dayOfMonth': dayOfMonth!,
  if (fetchUrl != null) 'fetchUrl': fetchUrl!,
  if (hour != null) 'hour': hour!,
  if (minuteOfHour != null) 'minuteOfHour': minuteOfHour!,
  if (password != null) 'password': password!,
  if (paused != null) 'paused': paused!,
  if (timeZone != null) 'timeZone': timeZone!,
  if (username != null) 'username': username!,
  if (weekday != null) 'weekday': weekday!,
};