toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (dayOfWeek != null) 'dayOfWeek': dayOfWeek!,
  if (startTime != null) 'startTime': startTime!,
  if (stopTime != null) 'stopTime': stopTime!,
};