toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final date = this.date;
  final dayOfWeek = this.dayOfWeek;
  final time = this.time;
  final timeZone = this.timeZone;
  return {
    'date': ?date,
    'dayOfWeek': ?dayOfWeek,
    'time': ?time,
    'timeZone': ?timeZone,
  };
}