toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowedDaysWithoutUpdate = this.allowedDaysWithoutUpdate;
final endMinutes = this.endMinutes;
final freezePeriods = this.freezePeriods;
final startMinutes = this.startMinutes;
final type = this.type;
return {
'allowedDaysWithoutUpdate': ?allowedDaysWithoutUpdate,
'endMinutes': ?endMinutes,
'freezePeriods': ?freezePeriods,
'startMinutes': ?startMinutes,
'type': ?type,
};
}