toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dayOfMonth = this.dayOfMonth;
final fetchUrl = this.fetchUrl;
final hour = this.hour;
final minuteOfHour = this.minuteOfHour;
final password = this.password;
final paused = this.paused;
final timeZone = this.timeZone;
final username = this.username;
final weekday = this.weekday;
return {
'dayOfMonth': ?dayOfMonth,
'fetchUrl': ?fetchUrl,
'hour': ?hour,
'minuteOfHour': ?minuteOfHour,
'password': ?password,
'paused': ?paused,
'timeZone': ?timeZone,
'username': ?username,
'weekday': ?weekday,
};
}