toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final daily = this.daily;
final daysOfWeek = this.daysOfWeek;
final duration = this.duration;
final singleOccurrenceDate = this.singleOccurrenceDate;
final startTime = this.startTime;
return {
'daily': ?daily,
'daysOfWeek': ?daysOfWeek,
'duration': ?duration,
'singleOccurrenceDate': ?singleOccurrenceDate,
'startTime': ?startTime,
};
}