toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dayOfMonth = this.dayOfMonth;
final dayOfWeek = this.dayOfWeek;
final enabled = this.enabled;
final fetchUri = this.fetchUri;
final frequency = this.frequency;
final password = this.password;
final timeOfDay = this.timeOfDay;
final timeZone = this.timeZone;
final username = this.username;
return {
'dayOfMonth': ?dayOfMonth,
'dayOfWeek': ?dayOfWeek,
'enabled': ?enabled,
'fetchUri': ?fetchUri,
'frequency': ?frequency,
'password': ?password,
'timeOfDay': ?timeOfDay,
'timeZone': ?timeZone,
'username': ?username,
};
}