toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'weekdays'] = this.weekdays;
json[r'start_hour_utc'] = this.startHourUtc;
json[r'start_minute_utc'] = this.startMinuteUtc;
json[r'duration_hours'] = this.durationHours;
return json;
}