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