toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final earliestRestorableTime = this.earliestRestorableTime;
final enabledTime = this.enabledTime;
final encryptionInfo = this.encryptionInfo;
final schedule = this.schedule;
return {
'earliestRestorableTime': ?earliestRestorableTime,
'enabledTime': ?enabledTime,
'encryptionInfo': ?encryptionInfo,
'schedule': ?schedule,
};
}