toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final backupPlan = this.backupPlan;
final createTime = this.createTime;
final etag = this.etag;
final name = this.name;
final restorePlan = this.restorePlan;
final uid = this.uid;
final updateTime = this.updateTime;
return {
'backupPlan': ?backupPlan,
'createTime': ?createTime,
'etag': ?etag,
'name': ?name,
'restorePlan': ?restorePlan,
'uid': ?uid,
'updateTime': ?updateTime,
};
}