toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final endTimeOfDay = this.endTimeOfDay;
  final repeatInterval = this.repeatInterval;
  final scheduleEndDate = this.scheduleEndDate;
  final scheduleStartDate = this.scheduleStartDate;
  final startTimeOfDay = this.startTimeOfDay;
  return {
    'endTimeOfDay': ?endTimeOfDay,
    'repeatInterval': ?repeatInterval,
    'scheduleEndDate': ?scheduleEndDate,
    'scheduleStartDate': ?scheduleStartDate,
    'startTimeOfDay': ?startTimeOfDay,
  };
}