toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (repeatValue != null) 'repeatValue': repeatValue!,
  if (scheduleEnabled != null) 'scheduleEnabled': scheduleEnabled!,
  if (startHour != null) 'startHour': startHour!,
  if (startMinute != null) 'startMinute': startMinute!,
  if (timeZone != null) 'timeZone': timeZone!,
};