toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final endDay = this.endDay;
final endTime = this.endTime;
final startDay = this.startDay;
final startTime = this.startTime;
return {
'endDay': ?endDay,
'endTime': ?endTime,
'startDay': ?startDay,
'startTime': ?startTime,
};
}